Skip to content
Prev 294698 / 398502 Next

Lattice: Add abline to Single Value qqmath() Plot

On Tue, May 15, 2012 at 4:19 PM, Rich Shepard <rshepard at appl-ecosys.com> wrote:
Apologies in advance if I misinterpret " R console insists that I
retype ..." but actually makes more sense (than sourcing a script) to
use the group argument (see the last example in ?qqmath) as in 4
groups in each of 30 panels, or allow.multiple=T, outer=T if you
really want separate panels for each transformation. Also can use
layout=c(1,1,120) if you need each in a separate page  - or say
c(3,2,20) for 20 pages of 6 panels each, etc. Regarding your script,
there is a syntax error:
Right here the " ' " is on the wrong side of " ) " causing the error:
because the plot is "done" with ) with unexpected "," following. You want
...main = ' Silver (Untransformed) ' ,

Personally I find using spaces whenever possible helps me avoid this
type of syntax error (which is the most frustrating...)

Cheers