Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/faq.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
"df = vaex.open('./my_data/my_big_file.csv')\n",
"```\n",
"\n",
"In this way you can work with artibrarily large CSV files, with the same API just as if you were working with HDF5, Apache Arrow or Apache Parquet files. \n",
"In this way you can work with arbitrarily large CSV files, with the same API just as if you were working with HDF5, Apache Arrow or Apache Parquet files. \n",
" \n",
"For performance reasons, we do recommend converting large CSV files either HDF5 or Apache Arrow format. This is simply done via:\n",
"For performance reasons, we do recommend converting large CSV files to either HDF5 or Apache Arrow format. This is simply done via:\n",
" \n",
"```python\n",
"df = vaex.open('./my_data/my_big_file.csv', convert='./my_data/my_big_file.hdf5')\n",
Expand Down
Loading