DataFrame' object has no attribute 'describle'
时间: 2024-03-16 15:39:53 浏览: 212
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
DataFrame对象没有'describle'属性,可能是因为拼写错误。正确的属性应该是'describe',它用于生成关于DataFrame中数值列的统计摘要。可以使用以下代码来调用'describe'属性:
```
df.describe()
```
这将返回一个包含计数、均值、标准差、最小值、25%分位数、50%分位数、75%分位数和最大值的统计摘要。
阅读全文