The file LaptopSalesJanuary2008.csv contains data for all sales of laptops at a computer chain in London in January 2008. This is a subset of the full dataset that includes data for the entire year. a) Create a bar chart, showing the average retail price by store. Which store has the highest average? Which has the lowest?
#1 Bar Plot
ax = laptop_df.groupby('Store
Postcode').mean().Retail_Price.plot(kind='bar')
ax.set_ylabel('Average Sales')
plt.ylim(475,500)
Solution is given below :- As can be seen in the visualization below, store N17 6Q A has the highest averag ... See the full answer