使用 describe() 方法排除列
Using describe() method to exclude a column
我刚开始使用 python 处理数据集,我试图排除列(“id”)不显示在输出中。想知道如何使用 describe() 和排除函数来解决这个问题。
使用output.describe(exclude=['id'])
describe
适用于数据类型。您可以基于数据类型而不是基于列来包含或排除。如果您的列 id
是唯一数据类型,则
df.describe(exclude=[datatype])
或者如果您只想删除 describe
中的列,请尝试此操作
cols = set(df.columns) - {'id'}
df1 = df[list(cols)]
df1.describe()
TaDa 完成了。有关 describe
的更多信息,请单击 here
我刚开始使用 python 处理数据集,我试图排除列(“id”)不显示在输出中。想知道如何使用 describe() 和排除函数来解决这个问题。
使用output.describe(exclude=['id'])
describe
适用于数据类型。您可以基于数据类型而不是基于列来包含或排除。如果您的列 id
是唯一数据类型,则
df.describe(exclude=[datatype])
或者如果您只想删除 describe
中的列,请尝试此操作
cols = set(df.columns) - {'id'}
df1 = df[list(cols)]
df1.describe()
TaDa 完成了。有关 describe
的更多信息,请单击 here