Return the number of rows in the DataFrame, if available.
(self)
| 107 | return self._df.num_columns |
| 108 | |
| 109 | def num_rows(self) -> int: |
| 110 | """ |
| 111 | Return the number of rows in the DataFrame, if available. |
| 112 | """ |
| 113 | return self._df.num_rows |
| 114 | |
| 115 | def num_chunks(self) -> int: |
| 116 | """ |
no outgoing calls