change size of sns plot code example
Example 1: seaborn size
import seaborn as sns
sns.set(rc={'figure.figsize':(11.7,8.27)})
Example 2: sns figsize
from matplotlib import pyplot as plt
import seaborn as sns
plt.figure(figsize=(15,8))
ax = sns.barplot(x="Word", y="Frequency", data=boxdata)
Example 3: seaborn expand plot to full width jupyter notebook
plt.rcParams['figure.figsize'] = [width, height]