gpt4 book ai didi

python - Seaborn distplot 与来自不同数组的 rugplot

转载 作者:太空宇宙 更新时间:2023-11-03 14:05:36 27 4
gpt4 key购买 nike

使用 seaborn 用地毯制作 distplot 很容易:

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)

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

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

答案应显示曲线 x 的图,地毯图刻度为 -2、-1、,0、1、2、2.1 和 3。

最佳答案

Seaborn 提供了一个函数 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

关于python - Seaborn distplot 与来自不同数组的 rugplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43710440/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com