Displaying 1 result from an estimated 1 matches for "inputp".
Did you mean:
inputs
2007 Jun 04
0
Same scale on different q-q plots
...ion to what is done on plot, also I have tried to use the plot.window
utility to implement xlim and ylim. I have even modified the qq.plot.R
source and re-compiled but none of these efforts has given any result.
I am doing a sequence of steps like the following:
library(car)
p<-read.csv("inputP",header=T)
p <- apply(p,c(1,2),as.numeric)
q<-qchisq(1-p,2)
png(file="outputP.png", bg="transparent")
plot.window(xlim=c(0,50), ylim=c(0,50))
qq.plot(q, dist="chisq", df=2)
y<-rchisq(length(p),2)
lines(y,y)
dev.off()
Is there anything that I can...