0

Does vaex provide a way to convert .csv files to .feather format? I have looked through documentation and examples and it appears to only allow conversion to .hdf5 format. I see that the dataframe has a .to_arrow() function but that looks like it only converts between different array types.

afriedman111
  • 1,925
  • 4
  • 25
  • 42

1 Answers1

1

The answer seems to be YES by using from_csv/export_feather as per the doc :

import vaex

vaex.from_csv("input.csv").export_feather("output.feather") 
Timeless
  • 22,580
  • 4
  • 12
  • 30