search for: micecount

Displaying 4 results from an estimated 4 matches for "micecount".

Did you mean: micecon
2005 Apr 25
1
Need help with panel.segment..
...3.4,3,88,12,2004,"LV1",3,2,26,1,2005,"LV1",3.8,2,87,2,2005,"LV1",3.2,3,28,3,2005,"LV1",3.4,3,88,4,2005,"LV1",3,2,26), .Dim=c(6,16)))); colnames(testdata) <- c('month', 'year', 'dataset','mean','stdDev','miceCount'); testdata[c("month", "mean")] <- lapply(testdata[c("month", "mean")], function(x) as.numeric(levels(x)[x])); testdata <- testdata[do.call("order", testdata), ]; trellis.par.set(theme = col.whitebg()); with(testdata, barchart(mean ~...
2005 Apr 21
3
Need help with R date handling and barchart with errorbars
...2,26, "1/1/05","LV1",3.8,2,87, "2/1/05","LV1",3.2,3,28, "3/1/05","LV1",3.4,3,88, "4/1/05","LV1",3,2,26 ), .Dim=c(5,16)))); colnames(testdata) <- c('date','dataset','mean','stdDev','miceCount'); testdata[c("date")] <- lapply(testdata[c("date")], function(x) as.date(levels(x)[x])); testdata[c("mean")] <- lapply(testdata[c("mean")], function(x) as.numeric(levels(x)[x])); On trying to print the data frame >testdata I get this.. d...
2005 May 05
6
Need some quick help with lattice - barchart
...ructure(c( 1,2005,9.24,6.18,634, 2,2005,8.65,6.05,96, 8,2004,6.81,6.51,16, 9,2004,9.0,7.29,8, 10,2004,8.84,6.18,524, 11,2004,8.54,6.35,579, 12,2004,9.97,6.3,614, 12,2005,8.75,5.84,32, ), .Dim=c(5,8)))) colnames(testdata) <- c('month', 'year', 'mean','stdDev','miceCount') testdata$month <- as.numeric(testdata$month) testdata$year <- factor(testdata$year) testdata <- testdata[do.call("order", testdata), ] png('lexstar_3241.png', width=600, height=as.numeric(length(levels(testdata$year))*200), pointsize=8) trellis.par.set(theme = col....
2005 Apr 22
1
Need help arranging the plot in different fashion than the default format
...3.4,3,88,12,2004,"LV1",3,2,26,1,2005,"LV1",3.8,2,87,2,2005,"LV1",3.2,3,28,3,2005,"LV1",3.4,3,88,4,2005,"LV1",3,2,26), .Dim=c(6,16)))); colnames(testdata) <- c('month', 'year', 'dataset','mean','stdDev','miceCount'); testdata[c("month", "mean")] <- lapply(testdata[c("month", "mean")], function(x) as.numeric(levels(x)[x])); testdata <- testdata[do.call("order", testdata), ]; trellis.par.set(theme = col.whitebg()); barchart(month ~ mean | year, data=t...