Skip to content

Commit d10a096

Browse files
authored
add dataframe property (#110)
Co-authored-by: MarcoGorelli <>
1 parent 25bf725 commit d10a096

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

spec/API_specification/dataframe_api/dataframe_object.py

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@
1111

1212

1313
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+
1423
def groupby(self, keys: Sequence[str], /) -> GroupBy:
1524
"""
1625
Group the DataFrame by the given columns.

0 commit comments

Comments
 (0)