Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该图的大小为 <Figure size 864x432 with 0 Axes>
plt.figure(figsize =(12,6)) pd.plotting.scatter_matrix(Effect_Wf_f) plt.show()
sns.set_style('whitegrid`)
谢谢
绘图功能可能会更改绘图大小。在末尾添加:
plt.gcf().set_size_inches(12,6)
里面还有一个figsize参数pandas.plotting.scatter_matrix
figsize
pandas.plotting.scatter_matrix