I am trying to plot water-level hydrogaphs for multiple wells. The data are in a text file with the first column a date in the format 'yyyymmdd'
. In this particular case, there are 35 other columns with float numbers.
I have been trying to use genfromtxt
, but I don't want to have to define all 36 dtypes.
I tried dtype=None
with converters, but then I get the message that the converter is locked and cannot be updated.