In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
In [9]:
x = [[1, 44, 55, 56, 57, 48, 99, 120], [2, 3, 45, 46, 47, 48, 192]]
In [10]:
plt.boxplot(x);
In [11]:
import seaborn as sns
In [16]:
sns.boxplot(x, fliersize=10);
In [14]:
plt.boxplot(x);
In [39]:
sns.reset_defaults()
In [43]:
plt.rcParams['lines.markeredgewidth'] = 1
In [45]:
plt.boxplot(x);
In [62]:
sns.set_context('notebook', rc={'lines.markeredgewidth': .5})
In [63]:
plt.boxplot(x, flierprops=dict(color='r', marker='o'));
In [68]:
sns.boxplot(x, flierprops=dict(color='r', marker='+'));
In [69]:
sns.set()
In [70]:
sns.boxplot(x, flierprops=dict(color='r', marker='+', markeredgewidth=2));
In [72]:
plt.boxplot(x, flierprops=dict(markeredgewidth=1));
In [ ]: