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
Hi! I'm trying to open .mpr files using the following code
from galvani import BioLogic as BL import pandas as pd
mpr = BL.MPRfile(path) df = pd.DataFrame(mpr.data) df.head()
however, I always get the error
NotImplementedError: column type 471 not implemented
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Hopefully this was fixed by #50 . Could you try again with the latest master?
master
Sorry, something went wrong.
Alternatively, could you send me an example data file which triggers this error?
@Gcarassai The new release (0.2.0) available from PyPI ought to fix this problem. Could you test it out and see if the problem is still there?
@chatcannon Maybe this issue can be closed?
No branches or pull requests
Hi! I'm trying to open .mpr files using the following code
from galvani import BioLogic as BL
import pandas as pd
mpr = BL.MPRfile(path)
df = pd.DataFrame(mpr.data)
df.head()
however, I always get the error
NotImplementedError: column type 471 not implemented
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: