I am trying to convert many .h5 files to a format that can be opened in tableau. since I am new to the python debugger, I can't detect any runtime errors that may be happening. Also,I'm not sure whether itd be better to split up the resulting CSV, or just save it all to one file. I'm not positive how to do either of these things.
from pandas import HDFStore
import pdb
import os
indir = 'C:\Users\Aktosar\data'
for root, dirs, filenames in os.walk(indir)
for f in filenames:
Pandas.convert(f)
I also can't decide whether to use .toCSV or the other saving method. Any method that successfully converts all the data to a csv that can be opened in tableau is the right methodfor this excercise. :)
Any help with the completion of this would be much appreciated!