File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
79
79
-i " pandas.Timestamp.min PR02" \
80
80
-i " pandas.Timestamp.resolution PR02" \
81
81
-i " pandas.Timestamp.tzinfo GL08" \
82
- -i " pandas.arrays.TimedeltaArray PR07,SA01" \
83
82
-i " pandas.core.groupby.DataFrameGroupBy.plot PR02" \
84
83
-i " pandas.core.groupby.SeriesGroupBy.plot PR02" \
85
84
-i " pandas.core.resample.Resampler.quantile PR01,PR07" \
Original file line number Diff line number Diff line change @@ -115,10 +115,10 @@ class TimedeltaArray(dtl.TimelikeOps):
115
115
----------
116
116
data : array-like
117
117
The timedelta data.
118
-
119
118
dtype : numpy.dtype
120
119
Currently, only ``numpy.dtype("timedelta64[ns]")`` is accepted.
121
120
freq : Offset, optional
121
+ Frequency of the data.
122
122
copy : bool, default False
123
123
Whether to copy the underlying array of data.
124
124
@@ -130,6 +130,12 @@ class TimedeltaArray(dtl.TimelikeOps):
130
130
-------
131
131
None
132
132
133
+ See Also
134
+ --------
135
+ Timedelta : Represents a duration, the difference between two dates or times.
136
+ TimedeltaIndex : Immutable Index of timedelta64 data.
137
+ to_timedelta : Convert argument to timedelta.
138
+
133
139
Examples
134
140
--------
135
141
>>> pd.arrays.TimedeltaArray._from_sequence(pd.TimedeltaIndex(["1h", "2h"]))
You can’t perform that action at this time.
0 commit comments