gpt4 book ai didi

python - tsplot 的颜色 basemap

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

我想在 Seaborn 中为 tsplot 的下半部分着色。我有以下代码:

sns.tsplot(时间=时间,数据=数据)

是否可以为绘图的下部区域着色?我尝试使用 barplot,但我的数据太大,所以看起来不正确。有什么建议吗?

最佳答案

尝试使用 matplotlib 中的 fill_ Between ,如下所示:

import numpy as np; np.random.seed(22)
import seaborn as sns; sns.set(color_codes=True)
import matplotlib.pylab as plt
x = np.arange(31)
data = np.sin(x) + np.random.rand(10, 31) + np.random.randn(10, 1)
sns.tsplot(data=data)
ax = plt.gca()
ax.fill_between(x, np.sin(x), ax.get_ylim()[0], color='r')
plt.show()

enter image description here

关于python - tsplot 的颜色 basemap ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38024511/

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