Answers for "reduce the size of sns plot"

0

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)
Posted by: Guest on December-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language