You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running this with pandas 0.4.1 the file pandas-success.csv
contains the nanRep string '999' as defined, but the file
pandas-fail.csv contains the string 'nan' instead.
The text was updated successfully, but these errors were encountered:
- new serializer for ChunkStore
- supports by column serialization
- Significantly faster than the record serializer for this use case
- Supports DataFrames and Series only
- Changes to chunker that boost performance
- Ability to read subset of columns
- Also fixespandas-dev#164
import numpy as np
import pandas
d = np.random.randn(8, 4)
df = pandas.DataFrame(d)
df[1][:] = np.nan
df.to_csv('pandas-success.csv', nanRep='999')
d = np.asarray(np.random.randn(8, 4), dtype=np.float32)
df = pandas.DataFrame(d)
df[1][:] = np.nan
df.to_csv('pandas-fail.csv', nanRep='999')
After running this with pandas 0.4.1 the file pandas-success.csv
contains the nanRep string '999' as defined, but the file
pandas-fail.csv contains the string 'nan' instead.
The text was updated successfully, but these errors were encountered: