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

Method read_pandas

python/pyarrow/feather.py:86–103  ·  view source on GitHub ↗

Read multiple Parquet files as a single pandas DataFrame Parameters ---------- columns : List[str] Names of columns to read from the file use_threads : bool, default True Use multiple threads when converting to pandas Returns

(self, columns=None, use_threads=True)

Source from the content-addressed store, hash-verified

84 f'{self.schema}\n\nvs\n\n{table.schema}')
85
86 def read_pandas(self, columns=None, use_threads=True):
87 """
88 Read multiple Parquet files as a single pandas DataFrame
89
90 Parameters
91 ----------
92 columns : List[str]
93 Names of columns to read from the file
94 use_threads : bool, default True
95 Use multiple threads when converting to pandas
96
97 Returns
98 -------
99 pandas.DataFrame
100 Content of the file as a pandas DataFrame (of columns)
101 """
102 return self.read_table(columns=columns).to_pandas(
103 use_threads=use_threads)
104
105
106def check_chunked_overflow(name, col):

Callers 1

get_flightFunction · 0.45

Calls 1

read_tableMethod · 0.95

Tested by

no test coverage detected