pandas报错处理:TypeError: Empty 'DataFrame': no numeric data to plot

Posted lsdb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas报错处理:TypeError: Empty 'DataFrame': no numeric data to plot相关的知识,希望对你有一定的参考价值。

TuShare返回的是pandas的DataFrame格式,但是执行以下代码时报错:TypeError: Empty ‘DataFrame‘: no numeric data to plot

import tushare as ts

df_all = ts.realtime_boxoffice()
df_box_office = df[BoxOffice]
df_box_office.index = df[Irank]
df_box_office.plot(kind=bar)

反复输出df[‘BoxOffice‘]确认是有值的,想不通为什么会报“Empty”,百度也没什么结果。

以为TuSahre和pandas结合时有bug准备放弃的时候看到了报错中有“numeric”,莫非是说df[‘BoxOffice‘]是字符串类型不是数值类型所以导致报错

在pandas官方文档看到了“astype()”的用法,代码改成如下成功绘图(另外使用“pd.to_numeric()”也可以,不过从tushare又得绕回pandas一趟感觉代码看起来没那么顺畅):

import tushare as ts

df_all = ts.realtime_boxoffice()
df_box_office = df[BoxOffice].astype(float)
df_box_office.index = df[Irank]
df_box_office.plot(kind=bar)

技术分享图片

 

以上是关于pandas报错处理:TypeError: Empty 'DataFrame': no numeric data to plot的主要内容,如果未能解决你的问题,请参考以下文章

报错处理——TypeError: Dog() takes no arguments

JavaScript异常报错处理:Uncaught TypeError: xxx is not a function

关于TypeError: 'zip' object is not subscriptable报错的处理

Pandas :TypeError: float() 参数必须是字符串或数字,而不是 'pandas._libs.interval.Interval'

Python_报错:TypeError: Tuple or struct_time argument required

Pandas:TypeError:sort_values() 缺少 1 个必需的位置参数:'by'