gpt4 book ai didi

解决pandas使用read_csv()读取文件遇到的问题

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章解决pandas使用read_csv()读取文件遇到的问题由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

如下:

  。

数据文件:

上海机场 (sh600009)
24.11 3.58
东风汽车 (sh600006) 74.25 1.74
中国国贸 (sh600007) 26.38 2.66
包钢股份 (sh600010) 61.01 2.35
武钢股份 (sh600005) 75.85 1.3
浦发银行 (sh600000) 6.65 0.96

  。

在使用read_csv() API读取CSV文件时求取某一列数据比较大小时, 。

?
1
2
df = pd.read_csv(output_file,encoding = 'gb2312' ,names = [ 'a' , 'b' , 'c' ])
df.b> 20

报错 。

?
1
TypeError: '>' not supported between instances of 'str' and 'int'

从返回的错误信息可知应该是数据类型错误,读回来的是‘str' 。

?
1
2
3
4
5
6
in : df.dtypes
out:
  a object
  b object
  c object
  dtype: object

由此可知 df.b 类型是 object 。

查阅read_csv()文档 配置:

?
1
2
3
4
dtype : Type name or dict of column - > type , default None
Data type for data or columns. E.g. { 'a' : np.float64, 'b' : np.int32} (unsupported with engine = 'python' ). Use str or object to preserve and not interpret dtype.
 
New in version 0.20 . 0 : support for the Python parser.

可知默认使用‘str'或‘object'保存 。

因此在读取时只需要修改 'dtype' 配置就可以 。

?
1
df = pd.read_csv(output_file,encoding = 'gb2312' ,names = [ 'a' , 'b' , 'c' ],dtype = { 'b' :np.folat64})

以上这篇解决pandas使用read_csv()读取文件遇到的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.

原文链接:https://blog.csdn.net/Zhang_Zhi_Qiang_1/article/details/78628130 。

最后此篇关于解决pandas使用read_csv()读取文件遇到的问题的文章就讲到这里了,如果你想了解更多关于解决pandas使用read_csv()读取文件遇到的问题的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com