Displaying 2 results from an estimated 2 matches for "methodargs".
Did you mean:
method_args
2008 Aug 14
1
error in passing an argument to do.call when do.call is in a for statement
...a simple function to generate jpegs
dp<-function(path){
jpeg(filename = path, width = 480, height = 480,
pointsize = 12, quality = 85, bg = "white",
res = NA, restoreConsole = TRUE)
x<-rnorm(1000)
hist(x)
dev.off()}
#this mimicks the generic function
drawpic<-function(method,methodArgs,rep=5){
dir.create(paste("C:\\BB\\"))
time<-format(Sys.time(), "%Y-%m-%d-%H%M")
dir.create(paste("C:\\BB\\",time,sep=""))
supdir<-paste("C:\\BB\\",time,sep="")
for (i in 1:rep){
subdir<-randomstring()
dir.create(paste(supdir,"...
2007 Apr 21
0
possible bug in xYplot and smean.cl.normal
...d="bands", type="l", ylim= ylim1, na.rm=T
)
# using method=
xYplot(Colony_Cnt ~ Scan | WellCol * WellRow , groups= Treatment, data=
dat.fss,
cex=0.1, lwd=2, lty.bands=rep("solid", 2), col.bands=rep("black",
2), lwd.bands=rep(1,2),
method= smean.cl.normal, methodArgs= list(conf.int=conf.int.1),
type="l", ylim= ylim1, na.rm=T
)
# VERY different CIs!!!!
#
# quantile
#
attach(dat.fss)
probs1 <- c(0.5, 0.25, 0.75)
ci <- summarize(Colony_Cnt, llist(WellRow, WellCol, WellName, Treatment,
Scan), quantile, probs= probs1, na.rm=T)
detach("da...