search for: eragcurs

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

2005 Apr 22
1
Help needed with lattice graph!
.../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( height ~ dist | geology, data = tmp, groups = species, type = "b", c...
2011 Aug 22
1
lattice to ggplot2 conversion help
...heme = 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.line = list(col = "grey", lty = 1)) # print is needed when you source() the file print(xyplot(height ~ di...
2005 May 04
1
Plotting means and confidence intervals by group factor using lattice graphics?
...uot;, "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 go to the R graph gallery! -- -------------------------------------------- Dr. San...