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
The pandas writers / reader is completely ignoring the string/symbol types.
When writing : both string and numpy.string are going to be passed as symbol when writing. But according to documentation only numpy.string should be converted to symbol
Similarly when reading: symbol/string are going to be received as bytes instead of numpy.bytes for symbol.
possible cause - _pandas.py/line 165 : if qtype == QSTRING: # assume we have a generic list of strings -> force representation as symbol list qtype = QSYMBOL
The text was updated successfully, but these errors were encountered:
The pandas writers / reader is completely ignoring the string/symbol types.
When writing : both string and numpy.string are going to be passed as symbol when writing. But according to documentation only numpy.string should be converted to symbol
Similarly when reading: symbol/string are going to be received as bytes instead of numpy.bytes for symbol.
pandas_parser
possible cause - _pandas.py/line 165 :
if qtype == QSTRING: # assume we have a generic list of strings -> force representation as symbol list qtype = QSYMBOL
The text was updated successfully, but these errors were encountered: