简体   繁体   中英

R Frechet Quantile plot

I have a vector with a single column of data (axle weights of vehicles) for which I need to create a Frechet Quantile (QQ) plot in R. The library qualityTools doesn't deal with this distribution. How do I create a QQ plot for the Frechet distribution in R? I have tried the following without success:

x<-T4A4$X79
y<-sort(x,decreasing=FALSE)
View(y)
vectorlength=length(y)
View(vectorlength)

d=dfrechet(y,shape=1)
p=pfrechet(y,shape=1)
q=qfrechet(p,shape=1)

View(d)
View(p)
View(q)
plot(q,y,main="Frechet")

This web page shows one way. Here is how:

your_data <- rnorm(30)
qqplot(x = VGAM::qfrechet(ppoints(n = length(your_data)), 
                          shape = 1),
       y = your_data,
       xlab = "Theoretical Quantiles", 
       ylab = "Sample Quantiles")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM