This is a sample dataframe, and I'd like to reassign the values from years b/w 2010-2013 from Company A's A1000 to Company A's B2000. What's a good way to get the result?
Code to generate the dataframe:
df = pd.DataFrame({'Year': [2010, 2010,2010,2010,2010,2011,2011,2011,2012,2012,2012,2012,2012,2013,2013,2013,2014],
'Comapny': ['A','A','A','B','B','A','B','C','A','B','B','B','C','A','B','C','D'],
'Code': ['A1000','B2000','C3000','A1000','B2000','B2000','B2000','B2000','A1000','A1000',
'B2000','C3000','A1000','B2000','C3000','A1000','A1000'],
'values': [1000,2000,3000,500,1000,2000,4000,4000,1500,4000,2000,6000,1000,5000,2000,1500,2000
]}
)
Desired Output:
You can create a mask and the use
df.loc
:Prints: