seaborn size

41

seaborn size -

import seaborn as sns

sns.set(rc={'figure.figsize':(11.7,8.27)})

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)

Comments

Submit
0 Comments