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 8f710a2 commit 5e0a4f6Copy full SHA for 5e0a4f6
pandas-stubs/core/resample.pyi
@@ -11,12 +11,14 @@ from typing import (
11
import numpy as np
12
from pandas import (
13
DataFrame,
14
+ Index,
15
Series,
16
Timedelta,
17
)
18
from pandas.core.groupby.generic import SeriesGroupBy
19
from pandas.core.groupby.groupby import BaseGroupBy
20
from pandas.core.groupby.grouper import Grouper
21
+from pandas.core.groupby.ops import BinGrouper
22
from typing_extensions import (
23
Self,
24
TypeAlias,
@@ -57,6 +59,8 @@ _SeriesGroupByFuncArgs: TypeAlias = (
57
59
58
60
61
class Resampler(BaseGroupBy[NDFrameT]):
62
+ _grouper: BinGrouper
63
+ ax: Index
64
def __getattr__(self, attr: str) -> SeriesGroupBy: ...
65
@overload
66
def aggregate(
0 commit comments