Displaying 1 result from an estimated 1 matches for "dgpd".
Did you mean:
bgpd
2007 Nov 29
0
how to call out the estimated parameter values
hi!
i've tried to run this code in R using the VGAM package. I know it's not a good fit. But i encountered a problem in calling the estimated parameter values using fit$estimate. But the codes worked if i put the estimated values just like in this case:
y.l <- dgpd(x, scale=0.979421685 , shape=-0.003183445 )
But not in this one:
y.g <- dgpd(x, scale=fit$estimate[1], shape=fit$estimate[2])
Can anyone help me how to call out the estimated parameters automatically
instead of writing each of the estimated values? So i can use them in future graphing. I kn...