作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 pymongo 从 mongo 数据库创建了一个 pandas 数据框。在数据库中,列中的元素看起来像整数,但当我创建数据框时,它们是 float 。我希望它们是整数。我怎样才能做到呢?我只是想更改该列。
尝试过
X = X.astype({'x':'int'})
myclient = pymongo.MongoClient("mongodb+srv://bla-bla")
mydb = myclient["p"]
mycol = mydb["aDB"]
colnames={ "_id": 1,"x":1, "y":1,"z":1}
X = pd.DataFrame(list(mycol.find({},colnames)))
最佳答案
尝试:
X['x'] = X['x'].astype('Int64')
关于python - Pandas : How can I change the type of the elements only in one column?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57197391/
我是一名优秀的程序员,十分优秀!