如何阻止 pandas 推断字符串值“Infinity” as inf 并将数据类型更改为 float64

发布于 2025-01-09 19:22:19 字数 517 浏览 0 评论 0原文

我有一个包含“Vendor”列的数据集,它有多个值“Infinity”,当我使用 read_csv 时,pandas 自动将 Vendor 列值转换为 inf 并更改其数据类型为 float64

这是我正在使用的测试数据集

Vendor, Value
Infinity,1
Infinity,2
Infinity,3
Infinity,4
Infinity,5

这是我使用 inf 值和数据类型为 float64 得到的结果

Vendor  Value
inf     1
inf     2
inf     3
inf     4
inf     5
Name: Vendor, dtype: float64

有没有办法避免默认推断 Infinity< /code> 到 inf

I have a dataset with a column "Vendor" and it has multiple values as "Infinity", when I use read_csv, pandas automatically converted the Vendor column values to inf and changed its datatype to float64.

This is the test dataset I am using

Vendor, Value
Infinity,1
Infinity,2
Infinity,3
Infinity,4
Infinity,5

This is the result I am getting with inf value and datatype as float64

Vendor  Value
inf     1
inf     2
inf     3
inf     4
inf     5
Name: Vendor, dtype: float64

Is there a way to avoid default infering of Infinity to inf?

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

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

发布评论

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

评论(1

淡忘如思 2025-01-16 19:22:20

您可以传递 dtype 参数来为特定列名称设置显式列类型,如下所示:

pd.read_csv(file_name, dtype={'Vendor': str})

You can pass the dtype argument to set explicit column types for particular column names, like so:

pd.read_csv(file_name, dtype={'Vendor': str})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文