BoxplotΒΆ

Example boxplot.

../_images/sphx_glr_plot_sns_boxplot_001.png
import seaborn as sns
import numpy as np

sns.set()

# Generate data
a = np.random.normal(0, 0.1, 1000)
b = np.random.normal(1, 0.1, 1000)

# Generate a boxplot
ax = sns.boxplot(data=(a,b))

# Name axes
ax.set_xlabel('Category')
ax.set_ylabel('Measurement')
ax.set_xticklabels({"a":0, "b":1})

Total running time of the script: ( 0 minutes 0.747 seconds)

Gallery generated by Sphinx-Gallery