Seaborn distplot与来自不同阵列的rugplot

时间:2017-04-30 19:26:38

标签: python numpy matplotlib seaborn

使用seaborn制作地毯的情节很容易:

import seaborn as sns, numpy as np
%matplotlib inline
sns.set(rc={"figure.figsize": (8, 4)}); np.random.seed(0)
x = np.random.randn(100)
ax = sns.distplot(x, rug=True)

上面的地图反映了分布x。但是,如果我想在rug_array的dist曲线下显示来自不同分布的地毯x怎么办?

rug_array = np.array([-2.0, -1, 0, 1, 2, 2.1, 3])

答案应显示曲线x的图,地图标记为-2,-1,0,1,2,2.1和3。

1 个答案:

答案 0 :(得分:5)

Seaborn提供了一个函数rugplot来绘制rugplot。我们的想法是使用这个功能。

import seaborn as sns
import numpy as np; np.random.seed(0)
import matplotlib.pyplot as plt

x = np.random.randn(100)
rug_array = np.array([-2.0, -1, 0, 1, 2, 2.1, 3])

ax = sns.distplot(x, rug=False)
sns.rugplot(rug_array, height=0.05, axis='x', ax=ax)

plt.show()

enter image description here