Is it possible to read excel directly in vaex like it do for csv? We could find from_csv function for loading csv but couldn't find a method for excel.
Asked
Active
Viewed 691 times
0
-
Please provide enough code so others can better understand or reproduce the problem. – Community Jun 15 '22 at 13:36
-
If you are loading an excel file, that means it is probably quite small. You can do it via pandas, something like `df = vaex.from_pandas(pd.read_excel('my_file.xls'))`. – Joco Jun 16 '22 at 22:05