{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Frequently Asked Questions" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### I have a massive CSV file which I can not fit all into memory at one time. How do I convert it to HDF5?\n", "\n", "Such an operation is a one-liner in Vaex:\n", "\n", "```\n", "df = vaex.from_csv('./my_data/my_big_file.csv', convert=True, chunk_size=5_000_000)\n", "```\n", "\n", "When the above line is executed, Vaex will read the CSV in chunks, and convert each chunk to a temporary HDF5 file on disk. All temporary will files are then concatenated into a single HDF5, and the temporary files deleted. The size of the individual chunks to be read can be specified via the `chunk_size` argument. \n", "\n", "For more information on importing and exporting data with Vaex, please refer to please refer to [the I/O example page](example_io.html)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Why can't I open a HDF5 file that was exported from a `pandas` DataFrame using `.to_hdf`?\n", "\n", "When one uses the `pandas` `.to_hdf` method, the output HDF5 file has a row based format. `Vaex` on the other hand expects column based HDF5 files. This allows for more efficient reading of data columns, which is much more commonly required for data science applications. \n", "\n", "One can easily export a `pandas` DataFrame to a `vaex` friendly HDF5 file:\n", "```\n", "vaex_df = vaex.from_pandas(pandas_df, copy_index=False)\n", "vaex_df.export_hdf5('my_data.hdf5')\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Why can't I add a new column after filtering a `vaex` DataFrame?\n", "\n", "Unlike other libraries, `vaex` does not copy or modify the data. After a filtering operations for example:\n", "\n", "```\n", "df2 = df[df.x > 5]\n", "```\n", "\n", "`df2` still contains all of the data present in `df` however. The difference is that the columns of `df2` are lazily indexed, and only the rows for which the filtering condition is satisfied are displayed or used. This means that in principle one can turn filters on/off as needed.\n", "\n", "To be able to manually add a new column to the filtered `df2` DataFrame, one needs to use the `df2.extract()` method first. This will drop the lazy indexing, making the length of `df2` equal to its filtered length.\n", "\n", "Here is a short example:" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "ExecuteTime": { "end_time": "2020-06-16T15:36:36.268286Z", "start_time": "2020-06-16T15:36:35.027778Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
# idname age
0 3Maria 27
1 4John 29
" ], "text/plain": [ " # id name age\n", " 0 3 Maria 27\n", " 1 4 John 29" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import vaex\n", "import numpy as np\n", "\n", "df = vaex.from_dict({'id': np.array([1, 2, 3, 4]),\n", " 'name': np.array(['Sally', 'Tom', 'Maria', 'John'])\n", " })\n", "\n", "df2 = df[df.id > 2]\n", "df2 = df2.extract()\n", "\n", "df2['age'] = np.array([27, 29])\n", "df2" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.6" } }, "nbformat": 4, "nbformat_minor": 2 }