作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有一个大约 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/
我是一名优秀的程序员,十分优秀!