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 a5832db commit ccd65d3Copy full SHA for ccd65d3
bigframes/dataframe.py
@@ -521,9 +521,9 @@ def info(
521
if self._block.has_index:
522
index_type = "MultiIndex" if self.index.nlevels > 1 else "Index"
523
524
- # These accessses are kind of expensive, maybe should try to skip?
525
index_stats = f"{n_rows} entries"
526
if n_rows > 0:
+ # These accessses are kind of expensive, maybe should try to skip?
527
first_indice = self.index[0]
528
last_indice = self.index[-1]
529
index_stats += f", {first_indice} to {last_indice}"
0 commit comments