python sns size plot code example
Example 1: 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 2: sns set figure size
import seaborn as sns
sns.set(rc={'figure.figsize':(11.7,8.27)})