我在这里找到了一些非常相似的解决方案,但没有一个能确切说明我想做什么。这是我的DataFrame:
import pandas as pd
sales = [('IPhone',150,200,50,100),('IPad',200,210,90,80),('IPod',200,210,90,100)]
labels = ['Product','Jan','Feb','Mar','Apr']
df = pd.DataFrame.from_records(sales,columns=labels)
现在,我想在iPad记录中的1月至4月的所有列中添加1。
这有效:
months =['Jan','Feb','Mar','Apr']
for i in months:
df.loc[df['Product'] == "IPad",i]+=1
但是,有人知道我不必每个月都输入明确的方法吗?像Jan:Apr
这样的东西会很完美。
非常感谢您的帮助。
詹斯