我有一个由3列组成的熊猫数据框:从[datetime64]到[datetime64],值[float64]。 我只想将“值”列裁剪为最大值。
df = dfo.clip(upper=100)
失败TypeError: Cannot compare type 'Timestamp' with type 'int'
如何仅裁剪数据框的列?
答案 0 :(得分:3)
您也可以使用 inplace=True
来避免赋值:
dfo['value'].clip(upper=100, inplace=True)
答案 1 :(得分:2)
您可以指定列:
.as-console-wrapper { max-height: 100% !important; top: auto; }
如果可能的话,多列:
dfo['value'] = dfo['value'].clip(upper=100)
或者如果需要裁剪,则所有数字列均按DataFrame.select_dtypes
进行过滤:
cols = ['value', 'another col']
dfo[cols] = dfo[cols].clip(upper=100)