Added typehints for head and tail
This commit is contained in:
parent
3b96d231f4
commit
875089349e
@ -1,3 +1,5 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
import inspect
|
import inspect
|
||||||
from collections import UserDict, UserList
|
from collections import UserDict, UserList
|
||||||
@ -423,12 +425,12 @@ class TimeSeriesCore(UserDict):
|
|||||||
|
|
||||||
return _IndexSlicer(self)
|
return _IndexSlicer(self)
|
||||||
|
|
||||||
def head(self, n: int = 6):
|
def head(self, n: int = 6) -> TimeSeriesCore:
|
||||||
"""Returns the first n items of the TimeSeries object"""
|
"""Returns the first n items of the TimeSeries object"""
|
||||||
|
|
||||||
return self.iloc[:n]
|
return self.iloc[:n]
|
||||||
|
|
||||||
def tail(self, n: int = 6):
|
def tail(self, n: int = 6) -> TimeSeriesCore:
|
||||||
"""Returns the last n items of the TimeSeries object"""
|
"""Returns the last n items of the TimeSeries object"""
|
||||||
|
|
||||||
return self.iloc[-n:]
|
return self.iloc[-n:]
|
||||||
|
Loading…
Reference in New Issue
Block a user