绘制理论CDF

时间:2018-08-10 14:59:08

标签: r data-visualization

我正在尝试绘制经验累积分布函数和理论累积分布函数。这是我的R代码:

x=rgamma(40, 2, 1/3)
plot(ecdf(x))
lines(x, pgamma(x, shape = 2, scale = 3), type="l", col = "red")

但是我在附件中找到了图形,我认为这是不合理的。 我做错了什么? enter image description here

1 个答案:

答案 0 :(得分:5)

扩大我的评论...这是您要寻找的吗?

x=rgamma(40, 2, 1/3)
plot(ecdf(x))
curve(pgamma(x, shape = 2, scale = 3), 
      0, 30, 
      add=TRUE,
      col="red")

这将导致以下绘图:

enter image description here