gpt4 book ai didi

python - Matplotlib 等同于 ggplot geom_ribbon?

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

我想重现 ggplot 样式,使用带状的值显示置信区间,例如 geom_ribbon 或 geom_smooth。

我尝试分别计算置信区间并使用 fill_between() 进行绘图,这很接近但似乎并不完全正确。使用fill_between() 时x 轴如何成为来自plot_date() 的样式?丝带的平滑度如何?

示例输出:

enter image description here enter image description here

ggplot 代码如下所示(找到了几个示例):

qplot(wt, mpg, data=mtcars, colour=factor(cyl)) +
geom_smooth(aes(ymin = lcl, ymax = ucl), data=grid, stat="identity")

ggplot(answers.overall, aes(Date, Answers)) + geom_line() +
geom_smooth(method="loess") + theme(axis.text.x = element_text(angle = 45, hjust = 1))

最佳答案

有什么理由不能使用 Python 的 ggplot 吗?因为那真的会大大简化事情:

import ggplot as gg

mtcars = gg.mtcars
gg.qplot(mtcars.wt, mtcars.mpg) + gg.geom_smooth(color="blue")

关于python - Matplotlib 等同于 ggplot geom_ribbon?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23981587/

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