Open r3verser opened 3 years ago
Hi,
Can you please try installing the latest alpha from pip: pip install vaex==4.0.0a13
?
And try to convert your csv data using this example.
Although I suspect that this like:
df["md5"] = [hashlib.md5(val.encode('utf-8')).hexdigest() for val in df['address']]
is the problematic one.
What does it contain? If you want to store lists, i think you should use the latest alpha and try exporting to an arrow format.
I hope this helps!
*Description** Hi, cant get it work! Im converting huge CSV to hdf5 and i need to add new column with value derived from existing one. Error occured
TypeError: list indices must be integers or slices, not str
in linedf["md5"] = [hashlib.md5(val.encode('utf-8')).hexdigest() for val in df['address']]
code sample:Software information
import vaex; vaex.__version__)
: