forked from pandas-dev/pandas-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccessors.pyi
431 lines (399 loc) · 12.7 KB
/
accessors.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
import datetime as dt
from datetime import (
timedelta,
tzinfo,
)
from typing import (
Generic,
Literal,
TypeVar,
)
from _typing import TimeZones
import numpy as np
import numpy.typing as npt
from pandas import (
DatetimeIndex,
Index,
PeriodIndex,
Timedelta,
TimedeltaIndex,
)
from pandas.core.accessor import PandasDelegate
from pandas.core.arrays import (
DatetimeArray,
PeriodArray,
)
from pandas.core.base import NoNewAttributesMixin
from pandas.core.frame import DataFrame
from pandas.core.series import (
PeriodSeries,
Series,
TimedeltaSeries,
TimestampSeries,
)
from pandas._libs.tslibs import BaseOffset
from pandas._libs.tslibs.offsets import DateOffset
from pandas._typing import (
TimestampConvention,
TimeUnit,
np_ndarray_bool,
)
class Properties(PandasDelegate, NoNewAttributesMixin): ...
_DTFieldOpsReturnType = TypeVar("_DTFieldOpsReturnType", bound=Series[int] | Index[int])
class _DayLikeFieldOps(Generic[_DTFieldOpsReturnType]):
@property
def year(self) -> _DTFieldOpsReturnType: ...
@property
def month(self) -> _DTFieldOpsReturnType: ...
@property
def day(self) -> _DTFieldOpsReturnType: ...
@property
def hour(self) -> _DTFieldOpsReturnType: ...
@property
def minute(self) -> _DTFieldOpsReturnType: ...
@property
def second(self) -> _DTFieldOpsReturnType: ...
@property
def weekday(self) -> _DTFieldOpsReturnType: ...
@property
def dayofweek(self) -> _DTFieldOpsReturnType: ...
@property
def day_of_week(self) -> _DTFieldOpsReturnType: ...
@property
def dayofyear(self) -> _DTFieldOpsReturnType: ...
@property
def day_of_year(self) -> _DTFieldOpsReturnType: ...
@property
def quarter(self) -> _DTFieldOpsReturnType: ...
@property
def days_in_month(self) -> _DTFieldOpsReturnType: ...
@property
def daysinmonth(self) -> _DTFieldOpsReturnType: ...
class _MiniSeconds(Generic[_DTFieldOpsReturnType]):
@property
def microsecond(self) -> _DTFieldOpsReturnType: ...
@property
def nanosecond(self) -> _DTFieldOpsReturnType: ...
class _DatetimeFieldOps(
_DayLikeFieldOps[_DTFieldOpsReturnType], _MiniSeconds[_DTFieldOpsReturnType]
): ...
_DTBoolOpsReturnType = TypeVar(
"_DTBoolOpsReturnType", bound=Series[bool] | np_ndarray_bool
)
class _IsLeapYearProperty(Generic[_DTBoolOpsReturnType]):
@property
def is_leap_year(self) -> _DTBoolOpsReturnType: ...
class _DatetimeBoolOps(
_IsLeapYearProperty[_DTBoolOpsReturnType], Generic[_DTBoolOpsReturnType]
):
@property
def is_month_start(self) -> _DTBoolOpsReturnType: ...
@property
def is_month_end(self) -> _DTBoolOpsReturnType: ...
@property
def is_quarter_start(self) -> _DTBoolOpsReturnType: ...
@property
def is_quarter_end(self) -> _DTBoolOpsReturnType: ...
@property
def is_year_start(self) -> _DTBoolOpsReturnType: ...
@property
def is_year_end(self) -> _DTBoolOpsReturnType: ...
_DTFreqReturnType = TypeVar("_DTFreqReturnType", bound=str | BaseOffset)
class _FreqProperty(Generic[_DTFreqReturnType]):
@property
def freq(self) -> _DTFreqReturnType | None: ...
class _TZProperty:
@property
def tz(self) -> tzinfo | None: ...
class _DatetimeObjectOps(
_FreqProperty[_DTFreqReturnType], _TZProperty, Generic[_DTFreqReturnType]
): ...
_DTOtherOpsDateReturnType = TypeVar(
"_DTOtherOpsDateReturnType", bound=Series[dt.date] | np.ndarray
)
_DTOtherOpsTimeReturnType = TypeVar(
"_DTOtherOpsTimeReturnType", bound=Series[dt.time] | np.ndarray
)
class _DatetimeOtherOps(Generic[_DTOtherOpsDateReturnType, _DTOtherOpsTimeReturnType]):
@property
def date(self) -> _DTOtherOpsDateReturnType: ...
@property
def time(self) -> _DTOtherOpsTimeReturnType: ...
@property
def timetz(self) -> _DTOtherOpsTimeReturnType: ...
class DatetimeAndPeriodProperties(_DatetimeFieldOps[Series[int]]): ...
class _DatetimeLikeOps(
_DatetimeFieldOps[_DTFieldOpsReturnType],
_DatetimeObjectOps[_DTFreqReturnType],
_DatetimeBoolOps[_DTBoolOpsReturnType],
_DatetimeOtherOps[_DTOtherOpsDateReturnType, _DTOtherOpsTimeReturnType],
Generic[
_DTFieldOpsReturnType,
_DTBoolOpsReturnType,
_DTOtherOpsDateReturnType,
_DTOtherOpsTimeReturnType,
_DTFreqReturnType,
],
): ...
# Ideally, the rounding methods would return TimestampSeries when `Series.dt.method`
# is invoked, but because of how Series.dt is hooked in and that we may not know the
# type of the series, we don't know which kind of series was ...ed
# in to the dt accessor
_DTTimestampTimedeltaReturnType = TypeVar(
"_DTTimestampTimedeltaReturnType",
bound=Series | TimestampSeries | TimedeltaSeries | DatetimeIndex | TimedeltaIndex,
)
class _DatetimeRoundingMethods(Generic[_DTTimestampTimedeltaReturnType]):
def round(
self,
freq: str | BaseOffset | None,
ambiguous: Literal["raise", "infer", "NaT"] | bool | np_ndarray_bool = ...,
nonexistent: (
Literal["shift_forward", "shift_backward", "NaT", "raise"]
| timedelta
| Timedelta
) = ...,
) -> _DTTimestampTimedeltaReturnType: ...
def floor(
self,
freq: str | BaseOffset | None,
ambiguous: Literal["raise", "infer", "NaT"] | bool | np_ndarray_bool = ...,
nonexistent: (
Literal["shift_forward", "shift_backward", "NaT", "raise"]
| timedelta
| Timedelta
) = ...,
) -> _DTTimestampTimedeltaReturnType: ...
def ceil(
self,
freq: str | BaseOffset | None,
ambiguous: Literal["raise", "infer", "NaT"] | bool | np_ndarray_bool = ...,
nonexistent: (
Literal["shift_forward", "shift_backward", "NaT", "raise"]
| timedelta
| Timedelta
) = ...,
) -> _DTTimestampTimedeltaReturnType: ...
_DTNormalizeReturnType = TypeVar(
"_DTNormalizeReturnType", TimestampSeries, DatetimeIndex
)
_DTStrKindReturnType = TypeVar("_DTStrKindReturnType", bound=Series[str] | Index)
_DTToPeriodReturnType = TypeVar(
"_DTToPeriodReturnType", bound=PeriodSeries | PeriodIndex
)
class _DatetimeLikeNoTZMethods(
_DatetimeRoundingMethods[_DTTimestampTimedeltaReturnType],
Generic[
_DTTimestampTimedeltaReturnType,
_DTNormalizeReturnType,
_DTStrKindReturnType,
_DTToPeriodReturnType,
],
):
def to_period(
self, freq: str | BaseOffset | None = ...
) -> _DTToPeriodReturnType: ...
def tz_localize(
self,
tz: TimeZones,
ambiguous: Literal["raise", "infer", "NaT"] | np_ndarray_bool = ...,
nonexistent: (
Literal["shift_forward", "shift_backward", "NaT", "raise"]
| timedelta
| Timedelta
) = ...,
) -> _DTNormalizeReturnType: ...
def tz_convert(self, tz: TimeZones) -> _DTNormalizeReturnType: ...
def normalize(self) -> _DTNormalizeReturnType: ...
def strftime(self, date_format: str) -> _DTStrKindReturnType: ...
def month_name(self, locale: str | None = ...) -> _DTStrKindReturnType: ...
def day_name(self, locale: str | None = ...) -> _DTStrKindReturnType: ...
class _DatetimeNoTZProperties(
_DatetimeLikeOps[
_DTFieldOpsReturnType,
_DTBoolOpsReturnType,
_DTOtherOpsDateReturnType,
_DTOtherOpsTimeReturnType,
_DTFreqReturnType,
],
_DatetimeLikeNoTZMethods[
_DTTimestampTimedeltaReturnType,
_DTNormalizeReturnType,
_DTStrKindReturnType,
_DTToPeriodReturnType,
],
Generic[
_DTFieldOpsReturnType,
_DTBoolOpsReturnType,
_DTTimestampTimedeltaReturnType,
_DTOtherOpsDateReturnType,
_DTOtherOpsTimeReturnType,
_DTFreqReturnType,
_DTNormalizeReturnType,
_DTStrKindReturnType,
_DTToPeriodReturnType,
],
): ...
class DatetimeProperties(
Properties,
_DatetimeNoTZProperties[
_DTFieldOpsReturnType,
_DTBoolOpsReturnType,
_DTTimestampTimedeltaReturnType,
_DTOtherOpsDateReturnType,
_DTOtherOpsTimeReturnType,
_DTFreqReturnType,
_DTNormalizeReturnType,
_DTStrKindReturnType,
_DTToPeriodReturnType,
],
Generic[
_DTFieldOpsReturnType,
_DTBoolOpsReturnType,
_DTTimestampTimedeltaReturnType,
_DTOtherOpsDateReturnType,
_DTOtherOpsTimeReturnType,
_DTFreqReturnType,
_DTNormalizeReturnType,
_DTStrKindReturnType,
_DTToPeriodReturnType,
],
):
def to_pydatetime(self) -> np.ndarray: ...
def isocalendar(self) -> DataFrame: ...
@property
def unit(self) -> TimeUnit: ...
def as_unit(self, unit: TimeUnit) -> _DTTimestampTimedeltaReturnType: ...
_TDNoRoundingMethodReturnType = TypeVar(
"_TDNoRoundingMethodReturnType", bound=Series[int] | Index
)
_TDTotalSecondsReturnType = TypeVar(
"_TDTotalSecondsReturnType", bound=Series[float] | Index
)
class _TimedeltaPropertiesNoRounding(
Generic[_TDNoRoundingMethodReturnType, _TDTotalSecondsReturnType]
):
def to_pytimedelta(self) -> np.ndarray: ...
@property
def components(self) -> DataFrame: ...
@property
def days(self) -> _TDNoRoundingMethodReturnType: ...
@property
def seconds(self) -> _TDNoRoundingMethodReturnType: ...
@property
def microseconds(self) -> _TDNoRoundingMethodReturnType: ...
@property
def nanoseconds(self) -> _TDNoRoundingMethodReturnType: ...
def total_seconds(self) -> _TDTotalSecondsReturnType: ...
class TimedeltaProperties(
Properties,
_TimedeltaPropertiesNoRounding[Series[int], Series[float]],
_DatetimeRoundingMethods[TimedeltaSeries],
):
@property
def unit(self) -> TimeUnit: ...
def as_unit(self, unit: TimeUnit) -> TimedeltaSeries: ...
_PeriodDTReturnTypes = TypeVar(
"_PeriodDTReturnTypes", bound=TimestampSeries | DatetimeIndex
)
_PeriodIntReturnTypes = TypeVar("_PeriodIntReturnTypes", bound=Series[int] | Index[int])
_PeriodStrReturnTypes = TypeVar("_PeriodStrReturnTypes", bound=Series[str] | Index)
_PeriodDTAReturnTypes = TypeVar(
"_PeriodDTAReturnTypes", bound=DatetimeArray | DatetimeIndex
)
_PeriodPAReturnTypes = TypeVar("_PeriodPAReturnTypes", bound=PeriodArray | PeriodIndex)
class _PeriodProperties(
Generic[
_PeriodDTReturnTypes,
_PeriodIntReturnTypes,
_PeriodStrReturnTypes,
_PeriodDTAReturnTypes,
_PeriodPAReturnTypes,
]
):
@property
def start_time(self) -> _PeriodDTReturnTypes: ...
@property
def end_time(self) -> _PeriodDTReturnTypes: ...
@property
def qyear(self) -> _PeriodIntReturnTypes: ...
def strftime(self, date_format: str) -> _PeriodStrReturnTypes: ...
def to_timestamp(
self,
freq: str | DateOffset | None = ...,
how: TimestampConvention = ...,
) -> _PeriodDTAReturnTypes: ...
def asfreq(
self,
freq: str | DateOffset | None = ...,
how: Literal["E", "END", "FINISH", "S", "START", "BEGIN"] = ...,
) -> _PeriodPAReturnTypes: ...
class PeriodIndexFieldOps(
_DayLikeFieldOps[Index[int]],
_PeriodProperties[DatetimeIndex, Index[int], Index, DatetimeIndex, PeriodIndex],
): ...
class PeriodProperties(
Properties,
_PeriodProperties[
TimestampSeries, Series[int], Series[str], DatetimeArray, PeriodArray
],
_DatetimeFieldOps[Series[int]],
_IsLeapYearProperty,
_FreqProperty[BaseOffset],
): ...
class CombinedDatetimelikeProperties(
DatetimeProperties[
Series[int],
Series[bool],
Series,
Series[dt.date],
Series[dt.time],
str,
TimestampSeries,
Series[str],
PeriodSeries,
],
_TimedeltaPropertiesNoRounding[Series[int], Series[float]],
_PeriodProperties,
): ...
class TimestampProperties(
DatetimeProperties[
Series[int],
Series[bool],
TimestampSeries,
Series[dt.date],
Series[dt.time],
str,
TimestampSeries,
Series[str],
PeriodSeries,
]
): ...
class DatetimeIndexProperties(
Properties,
_DatetimeNoTZProperties[
Index[int],
np_ndarray_bool,
DatetimeIndex,
np.ndarray,
np.ndarray,
BaseOffset,
DatetimeIndex,
Index,
PeriodIndex,
],
_TZProperty,
):
@property
def is_normalized(self) -> bool: ...
@property
def tzinfo(self) -> tzinfo | None: ...
def to_pydatetime(self) -> npt.NDArray[np.object_]: ...
def std(
self, axis: int | None = ..., ddof: int = ..., skipna: bool = ...
) -> Timedelta: ...
class TimedeltaIndexProperties(
Properties,
_TimedeltaPropertiesNoRounding[Index, Index],
_DatetimeRoundingMethods[TimedeltaIndex],
): ...