gpt4 book ai didi

python - 点状 Seaborn 分布图

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

我有一个 seaborn displot 看起来像这样 enter image description here

我想把一些线做成虚线。我怎样才能做到这一点?我尝试以 2 种不同的方式使用 linestyle,但出现错误

#### approach 1
for x, m in x_list:
sns.distplot(x, hist=False, label=m, linestyle='--')
#### approach 2
for x, m in x_list:
sns.distplot(x, hist=False, label=m, kde_kws={'linestyle':'--'})

TypeError: distplot() got an unexpected keyword argument 'linestyle'

最佳答案

使用 kde_kws={'linestyle':'--'} 的第二种方法适用于 seaborn 8.1。也许您想更新。

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

x_list = [np.random.rayleigh(1+i/2., size=35) for i in range(4)]

for x in x_list:
sns.distplot(x, hist=False, kde_kws={'linestyle':'--'})

plt.show()

enter image description here

关于python - 点状 Seaborn 分布图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49545409/

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