Python 官方文档:入门教程 => 点击学习
目录出现inf的原因解决办法PS:为了方便后续处理,可以利用numpy,将这些inf值进行替换。使用pandas从Mysql读取数据,在处理之后再写回到数据库时报了一个错误: sql
使用pandas从Mysql读取数据,在处理之后再写回到数据库时报了一个错误:
sqlalchemy.exc.ProgrammingError: (mysqldb._exceptions.ProgrammingError) inf can not be used with MySQL
很明确报错说明,是因为DataFrame中存在inf数据
在数据处理过程中用到了除法,并且出现了除数为0,导致出现inf,而数据库不支持写入该值
说明,np.inf为正无穷,-np.inf为负无穷
将处理过之后的DataFrame中的inf值替换掉,替换代码:
df = df.replace([np.inf, -np.inf], np.nan)
上述代码将处理结果中的正无穷和负无穷都替换为空值,最后写入到数据为中的为null值
1. 将某1列(series格式)中的 inf 替换为数值。
import numpy as np
df['Col'][np.isinf(df['Col'])] = -1
2. 将某1列(series格式)中的 inf 替换为NA值。
import numpy as np
df['Col'][np.isinf(df['Col'])] = np.nan
3. 将整个DataFrame中的 inf 替换为数值(空值同理)。#感谢评论区的补充
import numpy as np
df.replace(np.inf, -1) #替换正inf为-1
#替换正负inf为NA,加inplace参数
df.replace([np.inf, -np.inf], np.nan, inplace=True)
到此这篇关于Pandas中inf值替换的方法的文章就介绍到这了,更多相关Pandas inf值替换内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Pandas中inf值替换的方法
本文链接: https://lsjlt.com/news/119878.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0