1. 多变量关系组合图
# 前置库matplotlib
from pandas.plotting import scatter_matrix
fig, ax = plt.subplots(figsize=(20, 20))
scatter_matrix(DF[['column1', 'column2', 'column3']], alpha=0.4, diagonal='hist', ax=ax);
最终效果:
2. 两变量关系组合图
# 前置库seaborn
fig, ax = plt.subplots(figsize=MIDSIZE)
sns.regplot('column1', 'column2', data=DF, ax=ax)
ax.set_ylabel("y_name")
ax.set_xlabel("x_name")
fig.tight_layout()
最终效果图: