search for: varz

Displaying 5 results from an estimated 5 matches for "varz".

Did you mean: var
2003 Nov 19
2
Difference in ANOVA results - R vs. JMP/Minitab
Hi, I ran a small data set from a factorial experiment through R, Minitab and JMP... the result from R is significantly different from what Minitab or JMP give... The data set is at the following link: http://www.personal.psu.edu/nug107/Uploads/2x3_16repsANOVA.txt The first 5 columns are the factors and the next three are responses. In particular, for the response beta11MSE, two of the
2007 Aug 08
0
Creating netcdf from table
...for the first dataset (i.e first week): W01<-read.table("RN_weekly/KW01_RN.dat") long<-W01$V1 lat<-W01$V2 RN01<-W01$V3 dim1 <- dim.def.ncdf( "EW","degrees", as.double(long)) dim2 <- dim.def.ncdf( "SN","degrees", as.double(lat)) varz <- var.def.ncdf("Radon","Bq/m2/h1", list(dim1,dim2), -1, longname="Radon flux rate") nc.rn <- create.ncdf("rn_weekly.nc",varz) put.var.ncdf(nc.rn,varz,RN01) close.ncdf(nc.rn) The problem now is that the last step (put.var.ncdf) doesn't...
2007 Nov 07
2
creating a dynamic output vector
Let's say I have a program that returns variables whose names may be any string within the vector NAMES=c("varA","varB","varC","varD","varE","varF"..."varZ"), but I do not ever know which ones have actually been created. So in one example output, "varA", "varC", and "varD" could exist, but in another example output "varA", "varD", "varE",and "varF" exist, with no pattern or...
2012 Feb 18
3
foreach %do% and %dopar%
...he Valuation.R script are empty, and error comes because it does something like this at some point: VarX = A/B #But because the variables values are not getting into the Valuation.R script then #A = MCPVMPA = 0 and B = MCMKMPA = 0 So VarX = NaN Then it does something like: if (VarZ>VarX) VarY = 0 else VarY = VarX-VarZ #This line generates the error I have all the libraries installed: library(foreach) library(doMC) registerDoMC() It's not the installation because all the example code with %dopar% I've tested work fine. So can you help me please to make my code wor...
2003 Mar 12
2
Trouble using RSYNC from a SSH terminal
Hi, I'm setting up mirror server using RSYNC, but I couldn't find the answer... Why is possible to backup to my local Linux machine and why I couldn't use the same instruction for backing up through SSH? I explain: from the command line of my linux machine, I write: rsync -avuzb xxx.xxx.xxx.xxx::resource /home/www and it works properly. When I try to do the same in another machine