Jomy Jose [Fri, Oct 02, 2015 at 05:45:58PM CEST]:
Thank you,how to add correct reference line to this Rayleigh Q-Q plot.
?abline
--
Johannes Hüsing
http://derwisch.wikidot.com
Threema-ID: VHVJYH3H
__
R-help@r-project.org mailing lis
Thank you,how to add correct reference line to this Rayleigh Q-Q plot.
Jose
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read th
On 02/10/2015 8:24 AM, Jomy Jose wrote:
> Is it possible to code in R to get Q-Q plot for Rayleigh distribution
If you have a quantile function for any distribution, you can make a QQ
plot using ppoints() and the quantile function.
The Rayleigh distribution isn't in base R, but Google says it is
Similarly to what can be read on help(qqplot), however using Rayleigh
distribution:
library(VGAM)
p <- ppoints(100)
x <- qrayleigh(p)
y <- rrayleigh(100)
qqplot(x,y)
qqline(y, distribution = function(p) qrayleigh(p),
prob = c(0.1, 0.6), col = 2)
--
GG
[[alternative HTML version d
Is it possible to code in R to get Q-Q plot for Rayleigh distribution
Jose
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the
5 matches
Mail list logo