At line ~131, "pl.read_csv(f, separator=';')" in seaexplorer.py, read_csv cannot parse extreme microstructure values as i64:
ComputeError: Could not parse 2.22e-101as dtypei64` at column 'MR1000G-RDL_EPS2' (column number 22).
The current offset in the file is 490928 bytes.
You might want to try:
- increasing
infer_schema_length (e.g. infer_schema_length=10000),
- specifying correct dtype with the
dtypes argument
- setting
ignore_errors to True,
- adding
2.22e-101 to the null_values list.`