In Vaex's docs, I cannot find a way to create a dataframe from a list of lists.
In pandas I would simply do pd.DataFrame([['A',1,3], ['B',2,4]])
.
How can this be done in Vaex?
In Vaex's docs, I cannot find a way to create a dataframe from a list of lists.
In pandas I would simply do pd.DataFrame([['A',1,3], ['B',2,4]])
.
How can this be done in Vaex?
Copyright © 2021 Jogjafile Inc.
There is no method to read list of lists in vaex, however, there is vaex.from_arrays() and it works like this:
If you consider different python data structures, you may want to look at vaex.from_dict() or vaex.from_items()
Since you already have the data in memory, you can use
pd.DataFrame(list_of_lists)
and then load it into vaex:You may want to
del
the list of lists data afterwards, to free up memory.