numpy记录数组中列的数据类型转换

发布于 2024-12-06 04:04:41 字数 219 浏览 0 评论 0原文

我有一个 numpy 重新数组,其中包含几个整数列和一些字符串列。字符串列中的数据 99% 由整数组成,但 numpy 的东西它是一个字符串,因为“NA”在列中。

所以我有两个问题:

  • 如何删除 NA 并将它们更改为 0?

  • 如何将字符串列转换为整数,以便我可以拥有一个包含许多整数列的记录数组?

谢谢。

I have a numpy recarray with several integer columns and some string columns. The data in the string columns is composed 99% of integers, but numpy things it's a string because "NA" is in the column.

So I have two questions:

  • How do I remove the NA's and change them to 0s?

  • How can I convert the string columns to integers so that I can have a record array with many integer columns?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2024-12-13 04:04:41

使用 whereastype

>>> x = np.array([123, 456, "789", "NA", "0", 0])
>>> x 
array(['123', '456', '789', 'NA', '0', '0'], dtype='|S8')
>>> np.where(x != 'NA', x, 0).astype(int)
array([123, 456, 789,   0,   0,   0])

Use where and astype:

>>> x = np.array([123, 456, "789", "NA", "0", 0])
>>> x 
array(['123', '456', '789', 'NA', '0', '0'], dtype='|S8')
>>> np.where(x != 'NA', x, 0).astype(int)
array([123, 456, 789,   0,   0,   0])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文