Completion requirements
Here is an example that combines much of what has been introduced within the course using a very practical application. You should view this step as a culminating project for the first six units of this course. You should master the material in this project before moving on to the units on data mining.
Box Plots
Another way of showing both central tendency and dispersion is the
boxplot. In Seaborn, we can create boxplots by using the kind='box'
argument.
# create boxplot sns.boxplot(x = "State", y = "Rates.Violent.All", data = dfi) plt.show()
# create horizontal boxplot sns.boxplot(y = "State", x = "Rates.Violent.All", data=dfi) plt.show()
# create masks smalli_mask = dfi.loc[:, 'State'].isin(['Idaho', 'Iowa']) recent_mask = dfi.loc[:, 'Decade'] > 1990 # create boxplots sns.boxplot(x = "State", y = "Rates.Violent.All", hue = 'Decade', data = dfi.loc[smalli_mask & recent_mask]) plt.show()