give figure size to sns plot code example
Example 1: seaborn figure size
plt.figure(figsize=(20,10))
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)