gpt4 book ai didi

python - 如何从 DataFrame 图中排除几列?

转载 作者:IT老高 更新时间:2023-10-28 22:08:25 25 4
gpt4 key购买 nike

我有一个大约 25 列的 DataFrame,其中有几列包含不适合绘图的数据。 DataFrame.hist() 对这些抛出错误。如何指定这些列应从绘图中排除?

最佳答案

注意,对@Chang She 响应的修改,从 pandas 0.16 开始,- 运算符计划弃用。鼓励使用 difference() 方法。

exclude = ['bad col1', 'bad col2']
df.loc[:, df.columns.difference(exclude)].hist()

更新 deprecation :

df - df['A']

is now deprecated and will be removed in a future release. The preferred way to replicate this behavior is

df.sub(df['A'], axis=0)

关于python - 如何从 DataFrame 图中排除几列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13003051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com