We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The latter versions of savReaderWriter will include the header of a datafile so that this line
dataframe = pd.DataFrame.from_records((x for x in reader), coerce_float=False)
will fail because the first x in reader is a string, not a number.
The text was updated successfully, but these errors were encountered:
Fixes issue #719, savReaderWriter including headers in data
be655fb
We check for the version of savReaderWriter being used and if it is a recent one, we start reading after line 0 (i.e. the header).
No branches or pull requests
The latter versions of savReaderWriter will include the header of a datafile so that this line
dataframe = pd.DataFrame.from_records((x for x in reader), coerce_float=False)
will fail because the first x in reader is a string, not a number.
The text was updated successfully, but these errors were encountered: