Matplotlib绘制对图?

时间:2019-05-17 14:17:39

标签: python matplotlib

昨天我发布了此信息: Correlation scatter plot using DataFrame matrix?

由于我的英语在技术方面不太好,所以我很难解释我的问题。

我正在尝试使用此相关数据绘制对图

https://i.stack.imgur.com/uJvG1.png

ozone,radiation,temperature,wind,
1.0,0.3483416929936026,0.6985414096486389,-0.6129507522144628
0.3483416929936026,1.0,0.2940876437245132,-0.12736562398818144
0.6985414096486389,0.2940876437245132,1.0,-0.49714591092004284
-0.6129507522144628,-0.12736562398818144,-0.49714591092004284,1.0

我尝试使用熊猫,但结果很差,而且如果需要的话,我更愿意使用matplotlib对其进行绘制。我一直在尝试在线查找有关此问题的解决方案,但没有成功。请帮忙!

1 个答案:

答案 0 :(得分:1)

根据我评论中的链接,您可以

import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt

df = pd.DataFrame({'ozone': [1.0, 0.3483416929936026, 0.6985414096486389, -0.6129507522144628],
               'radiation': [0.3483416929936026, 1.0, 0.2940876437245132, -0.12736562398818144],
               'temperature':[0.6985414096486389, 0.2940876437245132, 1.0, -0.49714591092004284],
               'wind': [-0.6129507522144628, -0.12736562398818144, -0.49714591092004284, 1.0]})

g = pd.plotting.scatter_matrix(df, figsize=(10,10), marker = 'o', hist_kwds = {'bins': 10}, s = 60, alpha = 0.8)

plt.show()

enter image description here 我不确定您为什么不想使用Seaborn,但是您可以通过执行以下操作轻松地完成相同的操作

# Plot using Seaborn
sns.pairplot(df, diag_kws={'bins': 10})

enter image description here