Reputation: 1463
I am trying to convert a parquet table to pandas data frame, and to avoid memory doubling as per the documentation(enter link description here), I used following code;
df = table.to_pandas(split_blocks=True, self_destruct=True)
But I am getting following error;
TypeError: to_pandas() got an unexpected keyword argument 'split_blocks'
Right now I have the pyarrow version 0.15.1 installed. When I run the code Conda update pyarrow
I get the message, required packages are installed
.
May I know how can this error be remedied. Thanks in advance.
Upvotes: 0
Views: 6369