I did a distribution fit and was taking a look at the Q-Q-Plot and was wondering if there is an easy way to get the corresponding values from the graphic.
library("fitdistrplus")
data <- c(1050000, 1100000, 1230000, 1300000, 1450000, 1459785, 1654000, 1888000)
lognormalfit <- fitdist(data, "lnorm")
qqcomp(lognormalfit)
With the last line of code I receive the Q-Q-Plot without calculating the values. But I am also interested in the values. How can I obtain them?
Best regards Norbi
qqcomp
has an option to produce the plot usingggplot2
: this type of plot returns an object with the data. So you can grab the plot and data withand then you can grab the relevant data from the plot object using