Andrej Kastrin wrote:
>Dear useRs,
>I am having difficulty to plot graphics with mfrow command, where both
>axis are equal length. Below is sample code, which plots rectangles
>instead of squares:
>
>par (mfrow=c(3,3))
>qqnorm(a)
>qqnorm(b)
>...
>..
>
>Thanks in advance for any pointers or notes.
>
>______________________________________________
>R-help at stat.math.ethz.ch mailing list
>https://stat.ethz.ch/mailman/listinfo/r-help
>PLEASE do read the posting guide!
http://www.R-project.org/posting-guide.html
>
>
>
I done it myself:
par(mfrow=c(3,3),pty="s")
etc...