使用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。
答案 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()