Displaying 2 results from an estimated 2 matches for "secondarycolors".
2010 May 08
1
Increasing the font size on axes in trellis
...are both good, but what is shown near the tick
marks.
Please help me figure out what parameter I should add to make those
larger. I tried sticking cex.lab=1.3 in different places but it didn't
help.
Thank you very much!
par.settings=trellis.par.set(superpose.line =
list(col=c(PrimaryColors[4],SecondaryColors[4],PrimaryColors
[3],SecondaryColors[3]), lwd = 2,lty=c(1,3,2,4)),
? ? ? ?superpose.symbol = list(cex = 1.5, pch = c(20,1,3,4),
lty=c(1,3,2,4),col=c(PrimaryColors[4],SecondaryColors[4],PrimaryColors[3],SecondaryColors[3])),
? ? ? ? ? ?reference.line = list(col = "gray", lty ="dotted&...
2010 May 14
1
Putting 6 graphs on one page
...]],mean))
out$IV<-as.factor(as.numeric(row.names(out)))
names(out)[1]<-"j"
out2<-as.data.frame(tapply(data$DependentVariable,data[[IV]],mean))
out<-cbind(out,out2)
names(out)[3]<-"rf"
par.settings=trellis.par.set(superpose.line =
list(col=c(PrimaryColors[4],SecondaryColors[4]),lwd = 2,lty=c(1,3)),
superpose.symbol = list(cex = 1.5, pch = c(1,3),
lty=c(1,3),col=c(PrimaryColors[4],SecondaryColors[4])),
reference.line = list(col = "gray", lty ="dotted"))
plot<-dotplot(c(out$j,out$rf)~rep(out$IV,2),
groups=rep(c(&quo...