The contributed package e1071 does exactly what I want except that I need to have (1) the abscissa and ordinate axes swapped, with the probability scale on the bottom and the quantiles scale on the LHS. Using the following example:

library(e1071)
x <- rnorm(100, mean=5)
probplot(x, line=FALSE)

and (2) I need to have lines connecting the plotted symbols, as you get with:

x<-log(seq(1:20))
plot(x,type='b')

How can I do these two things; I've done a bunch of searching, but have not come across anything yet.

Regards,
Tom

--
Thomas E Adams
National Weather Service
Ohio River Forecast Center
1901 South State Route 134
Wilmington, OH 45177

EMAIL:  thomas.ad...@noaa.gov

VOICE:  937-383-0528
FAX:    937-383-0033

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to