search for: rland

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

Did you mean: land
2006 Mar 29
0
R for Windows crash on new laptop
...Latitude C400 running Windows XP Pro SP2, 866 MHz Pentium III processor, 512 MB of RAM). Any suggestions would be greatly appreciated. ############################################################################ #ArchI_burnin_NOdensdep-mod.R# habitats <- 1 carrycap <- 7500 stages <- 5 rland <- NULL numreps <- 2 numsteps <- 50 stepsize <- 100 runlength <- numsteps*stepsize rland <- new.landscape.empty() rland <- new.intparam.land(rland, h = habitats, s = stages, totgen = runlength) rland <- new.switchparam.land(rland, mp = 1) rland <- new.floatparam.land(r...
2006 Mar 29
0
R for Windows crash on new laptop - corrected script
.... Any >> suggestions would be greatly appreciated. >> >> ########################################################################## >> ## >> #ArchI_burnin_NOdensdep-mod.R# >> >> habitats <- 1 >> carrycap <- 7500 >> stages <- 5 >> rland <- NULL >> numreps <- 2 >> numsteps <- 50 >> stepsize <- 100 >> runlength <- numsteps*stepsize >> >> rland <- new.landscape.empty() >> rland <- new.intparam.land(rland, h = habitats, s = stages, totgen = >> runlength) >> rl...
2010 Sep 17
1
odfWeave UTF-8 error and latin characters
Hello R masters, I have sent this same message to other lists and none so far could give some light. I was trying to use odfWeave to generate a report from R and Im getting an error that I think is related to latin characters. I looked around and did find some stuff related to this problem about Sweave http://labmoluscos.wordpress.com/2010/02/18/sweave-latex-character-encoding/ but did not find a
2001 Oct 06
0
calculating DNA mismatch distributions for large populations
...). Right now, I am trying the following approach: 1) I create a 'distance matrix' of mismatches. I have been calculating the mismatches using the following approach (states() creates a list of two vectors: sl$aindex==indices and sl$state==sequences) sl<-states(lnum,Rland); rmat<-matrix(0,nrow=length(sl[[1]]),ncol=length(sl[[1]])); for (i in 1:length(sl[[1]])) for (j in i:length(sl[[1]])) { if (i!=j) { vi<-strsplit(sl$state[[i]],NULL)[[1]]...