标签: python encoding rounding
postgres
df总是以小数结尾,例如1.0,而不是我想要的1。
我正在使用的数据集在这里 https://www.kaggle.com/uciml/mushroom-classification
我还要补充一点,在.transform之后,df比数据帧更多地位于数组中
答案 0 :(得分:0)
df.astype(int)应该作为整数加载
df.astype(int)
有关更多信息,请参阅此问题 Change data type of columns in Pandas