我有如下形式的数据帧:
price percentage
Date
2021-10-11 298.075989 NaN
2021-10-18 308.570007 0.035206
2021-10-25 308.130005 -0.001426
我想检查是否所有的百分比(NaN除外)都在2%以上,然后我想打印一个特定的语句。我怎么做呢?提前感谢
您的示例似乎有点偏离,但这满足您的需求吗?
if all(df.percentage.dropna() > 2):
print('All are above 2 percent!')