matplotlib中的多重散点图

时间:2019-11-05 17:03:43

标签: python matplotlib

我想使用matplotlib制作多个散点图,我该如何细分散点图,我的意思是使len(功能)图散点图,我已经尝试过,但没有成功

for each in featureset:
      i=0
      fig,ax=plt.subplot(len(features))
      ax[i].scatter(df[each],df[Target],color='Blue')
      i+=1

所以我从这里解决了自己的问题

import seaborn as sns features=df.columns[:len(df.columns)-1] target=df[len(df)] sns.pairplot(df,x_vars=features,y_vars=target)

就是这样,一个非常简单的解决方案

0 个答案:

没有答案