search for: 264735

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

Did you mean: 26435
2008 Aug 26
2
lattice plotting character woes
...1st Qu.: 13996 Median :0.10146 Median :0.002900 Median :0.018500 Median : 38015 Mean :0.14431 Mean :0.005689 Mean :0.019567 Mean : 60883 3rd Qu.:0.12040 3rd Qu.:0.008592 3rd Qu.:0.020784 3rd Qu.: 84787 Max. :1.20530 Max. :0.024350 Max. :0.059000 Max. :264735 NA's :4.00000 NA's :4.000000 NA's :4.000000 NA's : 3 No..patches.100.ha X.1 Buffer.zone Min. :0.0000 Mode:logical Min. : 0.000 1st Qu.:0.3534 NA's:83 1st Qu.: 5.000 Median :0.5653 Median :10.000 Me...
2000 Sep 29
1
R for Irix 6.5 or lower
Good Day: Has anyone successfully compiled R, especially R.1.1.1, for Irix 6.5 or lower (an SGI octane machine) and if so, may I get a copy of it? Our computer does not have all the requisite software for compiling R -- to wit, a fortran compiler -- and there is insufficient demand here for R to warrant purchasing a compiler from SGI. I am trying to spur demand for R here by making it more
2012 Oct 16
2
sliding window analysis with rollapply
Dear List members I want to do the sliding window analysis of some specific values. Here is my code: require(zoo) dat <- read.table("chr1.txt", header = TRUE, sep="\t") dat2 <- cbind(dat[1,3]) #The first column is also important. It represents the position of the site on the chromosome. TS <- zoo(c(dat2)) a <- rollapply(TS, width=1000000, by=200000, FUN=mean,