I would really appreciate your help with this question
The dataframe below, 'df', generates a bar plot.
item number year a 400 2014 b 150 2015 c 300 2011 a 300 2015 c 400 2011 c 100 2011 b 250 2014
Complete the following code to generates the bar plot below
newdf <- df %>%
(number = number/100) %>% group_by(
) %>%
(m = median( ))