I have a dataframe below, with sales of meat, vegetable and bread from each store. I would like to convert the values into %, for example, the value of Store N will become 74%, 7% and 19%. In other words, 74% is the % of sales of meat in terms of total sales of store N. What is the simplest way of doing it?
import pandas as pd
df=pd.DataFrame({'Store':['N','S','E','W']
,'Meat':[200,250,100,400]
,'Veg':[20,100,30,80]
,'Bread':[50,230,150,100]})
df=df[['Store','Meat','Veg','Bread']]
You can also use pandas.apply with a lambda function:
Which gives you: