标签: python pandas
我正在尝试将满足if语句的列中的某些行乘以一个常数。我将到目前为止创建的索引包括在内。
rowIndex=df.index[df['columnName'] <= 1]
答案 0 :(得分:0)
只需使用df.loc[df['columnName'] < 1, 'columnName'] *= c。
df.loc[df['columnName'] < 1, 'columnName'] *= c