Displaying 1 result from an estimated 1 matches for "fhcgb".
Did you mean:
cgb
2007 Jun 05
2
Lines to plots with a for-loop
Hello all,
I'm plotting several graphs with a for-loop with a code:
par(mfrow=c(3,4))
for(i in levels(fHCGB$code)) with(subset(fHCGB,code==i),
plot(pooledPlateIntra, type="b", ylim=ylim, xlab=code, ylab="CV%"))
With which I have no problems.. However I need to add lines to all of
these 12 plots, but I cannot get it to work. I've tried for example
par(mfrow=c(3,4))
for(i in lev...