正在尝试将数据类型设置为decimal。我得到一个错误,即pyarrow没有属性decimal
>>> import pyarrow
>>> pyarrow.decimal(8)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'pyarrow' has no attribute 'decimal'发布于 2019-09-13 04:33:05
发现pa.decimal128(18)可以正常工作
https://stackoverflow.com/questions/57913860
复制相似问题