How to change a figure's size in Python Seaborn package

前端 未结 6 1724
情深已故
情深已故 2020-12-05 04:32

I\'m having trouble increasing the size of my plot figures using Seaborn (imported as sns). I\'m using sns.pairplot to plot columns of a data frame

6条回答
  •  渐次进展
    2020-12-05 05:35

    Try to put the size in parenthesis, this does the trick for me:

    plt.rcParams['figure.figsize']=(10,10)
    

提交回复
热议问题