We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e8cd7 commit ab230ebCopy full SHA for ab230eb
bigframes/dataframe.py
@@ -346,6 +346,10 @@ def columns(self, labels: pandas.Index):
346
def shape(self) -> Tuple[int, int]:
347
return self._block.shape
348
349
+ @property
350
+ def axes(self) -> list:
351
+ return [self.index, self.columns]
352
+
353
@property
354
def size(self) -> int:
355
rows, cols = self.shape
third_party/bigframes_vendored/pandas/core/frame.py
@@ -67,7 +67,7 @@ def axes(self) -> list:
67
>>> df.axes[1:]
68
[Index(['col1', 'col2'], dtype='object')]
69
"""
70
- return [self.index, self.columns]
+ raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)
71
72
73
def values(self) -> np.ndarray:
0 commit comments