python'AxesSubplot'没有属性sns

时间:2019-02-05 21:28:58

标签: python python-3.x

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

plt.style.use('seaborn')

np.random.seed(78951257)
data = np.random.randn(2, 100)

fig, axs = plt.subplots(2, 2, figsize=(5, 5))
axs[0, 0].hist(data[0])
axs[1, 0].plot(data[0], data[1])
axs[0, 1].sns.kdeplot(data[0], data[1], cmap="Red", shade=True)
axs[1, 1].hist2d(data[0], data[1])

plt.show()

我想要显示所有这四个图。但是当我想要图

axs[0, 1].sns.kdeplot(data[0], data[1], cmap="Red", shade=True)

它说有一个错误,表明AxesSubplot没有属性'kdeplot'。我将seaborn风格导入为sns。

1 个答案:

答案 0 :(得分:0)

Seaborn是一个模块,因此没有被调用。像这样:

sns.kdeplot(data[0], data[1], cmap="Reds", shade=True, ax=axs[0,1])

应该可以解决问题。另请注意,“红色”不是颜色图,但“红色”是。

enter image description here