We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7abc8 commit aff27c7Copy full SHA for aff27c7
pandas/_libs/tslibs/offsets.pyx
@@ -934,6 +934,20 @@ cdef class SingleConstructorOffset(BaseOffset):
934
# Tick Offsets
935
936
cdef class Tick(SingleConstructorOffset):
937
+ """
938
+ Offset ``n`` ticks.
939
+
940
+ Attributes
941
+ ----------
942
+ n : int, default 1
943
+ The number of ticks represented.
944
+ normalize : bool, default False
945
+ Normalize start/end dates to midnight before generating date range.
946
947
+ See Also
948
+ --------
949
+ :class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
950
951
_adjust_dst = False
952
_prefix = "undefined"
953
_attributes = tuple(["n", "normalize"])
0 commit comments