R-command:
stripchart(e,method="stack",col="green",add=F,at=0.0)
stripchart(f,method="stack",col="blue",add=T,at=0.0)
Thanks in advance.
Cheers,
Anisah
---------------------------------
[[alternative HTML version deleted]]
______________________________________________
R-h...@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
e <- c(17358865 , 17966995 , 21306539 , 27880531,
34166504, 36111044, 36266288,
36854306 , 43786190 , 44322336 , 45529444, 46302360,
53479132, 58567262,
60564442 , 72637088 , 79875476 , 93155112, 94372260,
96643396, 103123936,
116908456, 131781664, 132968364, 135945080, 141788832,
149924864, 156539568,
157817896, 162399496, 168344072, 173146584, 176302744,
182878168, 183946152,
185068720, 190791232, NA )
f <- c(17906353, 21295547, 27880531, 34118702 ,
35395488, 36132622 , 37916920,
43786190, 44322336, 46302360, 53494622 , 62105336,
63817440 , 72637088 ,
79875476, 94545992 , 96506368, 103123936 ,116908456,
126190072, 127446552 ,
131781664, 154658264 ,176302744, 181670472, 182625272,
182878168, 183946152,
NA )
ec <- rep("ee", length(e))
fc <- rep("ff", length(f))
bb <- data.frame(c(ec,fc),c(e,f))
stripplot(bb[,2]~bb[,1])
--- mohamed nur anisah <nuranisa...@yahoo.com>
wrote: