Matplotlib相当于ggplot geom_ribbon?

时间:2014-06-01 15:47:11

标签: python r matplotlib ggplot2 python-ggplot

我想重现ggplot样式,即使用功能区(例如geom_ribbon或geom_smooth)显示值的置信区间。

我尝试单独计算置信区间并使用fill_between()进行绘图,该plot_date()近似但并不完全正确。在使用fill_between()时,x轴如何成为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)) 的样式?如何平滑色带?

示例输出:

enter image description here enter image description here

ggplot代码看起来像这样(几个找到的例子):

{{1}}

1 个答案:

答案 0 :(得分:3)

您是否有理由不能将 ggplot 用于Python?因为这会真正简化事情:

import ggplot as gg

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