我正在尝试使用 R(软件)通过以下方式绘制 beta-gumbel 分布,一般的想法是,在 beta 分布的 pdf 中,我们不是插入 x,而是使用 gumbel 的 cdf。但我无法得到正确的情节。
x <- seq(-3, 3, length=100)
Fx = pgumbel(x,loc=0,scale=1)
y = dbeta(Fx,shape1=0.5,shape2=0.5)
plot(x, y, type="l", lty=2, xlab="x value", ylab="Density",ylim=c(0,1))