0

我在datacamp中执行一个主题如下:

探索您的数据 现在,您将使用 Python pandas 模块执行一些数据探索。要了解数据,您将输出平均值、中位数、计数和百分位数等统计数据。DataFrame recent_grads 仍在您的工作区中

标题希望的目标如下:

Print the .dtypes of your data so that you know what each column contains.
Output basic summary statistics using a single pandas function.
With the same function from before, summary statistics for all columns that aren't of type object.

我的代码如下

# Print .dtypes
print(recent_grads.dtypes)
# Output summary statistics
print(recent_grads.describe())
# Exclude data of type object
print(recent_grads.describe(exclude='object'))

但是,出现的错误信息如下

确保在第二次调用 .describe() 时正确排除了对象类型变量

请问链接哪一部分错了,麻烦求助,谢谢!

4

1 回答 1

5

exclude该方法的参数describe()需要一个类似列表的 dtypes

请参阅文档: https ://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.describe.html

所以,在你的情况下,正确的电话是recent_grads.describe(exclude=['object'])

于 2018-09-28T09:08:06.473 回答