search for: arisdiff

Displaying 3 results from an estimated 3 matches for "arisdiff".

Did you mean: absdiff
2005 Apr 22
1
Help needed with lattice graph!
...is certainly a candidate for the new R graph gallery (http://addictedtor.free.fr/graphiques/displayGallery.php)! I created the following lattice graph: library(lattice) tmp <- expand.grid(geology = c("Sand","Clay","Silt","Rock"), species = c("ArisDiff","BracSera","CynDact","ElioMuti","EragCurS","EragPseu"), dist = seq(1,9,1) ) tmp$height <- rnorm(216) sps <- trellis.par.get("superpose.symbol") sps$pch <- 1:6 trellis.par.set("superpose.symbol", sps) xyplot(...
2011 Aug 22
1
lattice to ggplot2 conversion help
...(http://addictedtor.free.fr/graphiques/graphcode.php?graph=48). Code: library(lattice) lattice.options(default.theme = canonical.theme(color = FALSE)) tmp <- expand.grid(geology = c("Sand","Clay","Silt","Rock"), species = c("ArisDiff", "BracSera", "CynDact", "ElioMuti", "EragCurS", "EragPseu"), dist = seq(1,9,1) ) tmp$height <- rnorm(216) sp <- list(superpose.symbol = list(pch = 1:6, cex = 1.2), superpose.li...
2005 May 04
1
Plotting means and confidence intervals by group factor using lattice graphics?
...plotMeans function provides a useful option error.bars ("se", "sd", "conf.int", "none"). The following test data is still useful: tmp <- expand.grid(geology = c("Sand","Clay","Silt","Rock"), species = c("ArisDiff","BracSera","CynDact","ElioMuti","EragCurS","EragPseu"), dist = seq(1,9,1) ) tmp$height <- rnorm(216) For instance plotting height versus dist by geology. Any help very welcome! Cheers, Sander. PS Of course the resulting graph will g...