成功解决ret = ret / rcountTypeError: unsupported operand type(s) for /: ‘str‘ and ‘int‘

简介: 成功解决ret = ret / rcountTypeError: unsupported operand type(s) for /: ‘str‘ and ‘int‘


目录

解决问题

解决思路

解决方法


解决问题

   boxplot(array)

 File "E:\Program Files\Python\Python36\lib\site-packages\matplotlib\pyplot.py", line 2848, in boxplot

   zorder=zorder, data=data)

 File "E:\Program Files\Python\Python36\lib\site-packages\matplotlib\__init__.py", line 1855, in inner

   return func(ax, *args, **kwargs)

 File "E:\Program Files\Python\Python36\lib\site-packages\matplotlib\axes\_axes.py", line 3557, in boxplot

   labels=labels, autorange=autorange)

 File "E:\Program Files\Python\Python36\lib\site-packages\matplotlib\cbook\__init__.py", line 1841, in boxplot_stats

   stats['mean'] = np.mean(x)

 File "<__array_function__ internals>", line 6, in mean

 File "E:\Program Files\Python\Python36\lib\site-packages\numpy\core\fromnumeric.py", line 3373, in mean

   out=out, **kwargs)

 File "E:\Program Files\Python\Python36\lib\site-packages\numpy\core\_methods.py", line 172, in _mean

   ret = ret / rcount

TypeError: unsupported operand type(s) for /: 'str' and 'int'

解决思路

类型错误:不支持/:“str”和“int”的操作数类型

解决方法

通过print(array)发现,array中存在str类型数据,所以,要讲str类型数据去掉或者转为int型数据即可!

1. array [[2.1909676502373716 2.607015388816513 1.3860962260762568 ...
2.   -1.1294268713572033 2.5030404172865484 '1']
3.  [2.1833913365652493 2.607015388816513 1.3760805967854473 ...
4.   -0.7176317548954712 2.4492909440768904 '1']
5.  [2.172026866057066 2.607015388816513 1.3760805967854473 ...
6.   -0.6735108495602856 2.180543578028602 '1']
7.  ...
8.  [2.172026866057066 2.607015388816513 1.3760805967854473 ...
9.   -0.6735108495602856 1.9547957905480406 '1']
10.  [2.1833913365652493 2.607015388816513 1.3760805967854473 ...
11.   -0.6735108495602856 2.03004505304156 '1']
12.  [2.172026866057066 2.607015388816513 1.3760805967854473 ...
13.   -0.6735108495602856 1.9977953691157657 '1']]

哈哈,大功告成!

文章知识点与官方知识档案匹配,可进一步学习相关知识

Python入门技能树绘图库Matplotlib风格和样式81260 人正在系统学习中


相关文章
|
1月前
|
Python
[oeasy]python036_数据类型有什么用_type_类型_int_str_查看帮助
本文回顾了Python中`ord()`和`chr()`函数的使用方法,强调了这两个函数互为逆运算:`ord()`通过字符找到对应的序号,`chr()`则通过序号找到对应的字符。文章详细解释了函数参数类型的重要性,即`ord()`需要字符串类型参数,而`chr()`需要整数类型参数。若参数类型错误,则会引发`TypeError`。此外,还介绍了如何使用`type()`函数查询参数类型,并通过示例展示了如何正确使用`ord()`和`chr()`进行转换。最后,强调了在函数调用时正确传递参数类型的重要性。
20 3
|
3月前
|
Dart JavaScript 前端开发
Dart或Flutter中解决异常-type ‘int‘ is not a subtype of type ‘double‘
Dart或Flutter中解决异常-type ‘int‘ is not a subtype of type ‘double‘
120 4
|
4月前
|
存储 数据处理 索引
数据类型转换:int()、str()、float()
在Python中,数据类型转换是一项基础且重要的操作
|
4月前
|
存储 Python
语音输入,python数据类型,type()用来查看数据类型,数据类型转换,int(x)转整数,float(x)转换为浮点数,str(x),将对象转为字符串,标识符,标识符不允许使用关键字,关键字参考
语音输入,python数据类型,type()用来查看数据类型,数据类型转换,int(x)转整数,float(x)转换为浮点数,str(x),将对象转为字符串,标识符,标识符不允许使用关键字,关键字参考
YOLO V5出现RuntimeError: result type Float can‘t be cast to the desired output type long int解决方法
YOLO V5出现RuntimeError: result type Float can‘t be cast to the desired output type long int解决方法
680 0
|
Python
Python 数值类型方法|内建函数的对比汇总 (int bool float complex bytes str)
Python 数值类型方法|内建函数的对比汇总 (int bool float complex bytes str)
121 0
|
Python
Python类型转换的四个函数int()、float()、str()、bool()
Python类型转换的四个函数int()、float()、str()、bool()自制脑图 将一个类型的对象转换为其他对象类型转换不是改变对象本身的类型,而是根据当前对象的值创建一个新对象。
242 0
Python类型转换的四个函数int()、float()、str()、bool()
TypeError: unsupported operand type(s) for -=: 'Retry' and 'int'
TypeError: unsupported operand type(s) for -=: 'Retry' and 'int'
462 0
|
Python
【hacker的错误集】TypeError: can‘t multiply sequence by non-int of type ‘str‘
我比较喜欢通过单词的意思来分析报错 TypeError类型错误 multiply乘 sequence 序列 通过分析可以得出报错意思大概是类型错误:无法将序列与字符串类型的非整数相乘
365 0
【hacker的错误集】TypeError: can‘t multiply sequence by non-int of type ‘str‘
|
存储
TypeError: can only concatenate str (not “int“) to str
TypeError: can only concatenate str (not “int“) to str
380 0
TypeError: can only concatenate str (not “int“) to str