MCPcopy Create free account
hub / github.com/apache/arrow / num_rows

Method num_rows

python/pyarrow/interchange/dataframe.py:109–113  ·  view source on GitHub ↗

Return the number of rows in the DataFrame, if available.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 13

get_chunksMethod · 0.95
FinalizeMethod · 0.45
FinalizeMethod · 0.45
ReadNextMethod · 0.45
test_pandas_roundtripFunction · 0.45
test_pyarrow_roundtripFunction · 0.45
test_dataframeFunction · 0.45

Calls

no outgoing calls