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 25bf725 commit d10a096Copy full SHA for d10a096
spec/API_specification/dataframe_api/dataframe_object.py
@@ -11,6 +11,15 @@
11
12
13
class DataFrame:
14
+ @property
15
+ def dataframe(self) -> object:
16
+ """
17
+ Return underlying (not-necessarily-Standard-compliant) DataFrame.
18
+
19
+ If a library only implements the Standard, then this can return `self`.
20
21
+ ...
22
23
def groupby(self, keys: Sequence[str], /) -> GroupBy:
24
"""
25
Group the DataFrame by the given columns.
0 commit comments