search for: devel_2009

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

Did you mean: devel_2005
2009 Jan 11
3
Package Matrix does not compile in R-devel_2009-01-10
Dear developers, today I tried to build and install R-devel_2009-01-10 on FreeBSD 8.0-CURRENT (i386) for testing purposes. All went well until compiling the now recommended (integrated) Matrix package. At this point the following break occured: ------------------------------------------------ begin installing recommended package Matrix * Installing *source*...
2009 Dec 02
1
./configure warning (PR#14104)
Full_Name: Version: devel_2009-12-01 OS: Linux Submission from: (NULL) (146.87.149.164) Can ./configure be made/told to look in /usr/share/texmf/bin instead of /usr/bin or /usr/local/bin for pdftex and pdflatex? This saves me from creating symlinks, which, once there, create issues with other programmes I am trying to compi...
2009 May 23
2
as.numeric(levels(factor(x))) may be a decreasing sequence
...and a week of CPU on three processors) and all the obtained examples were caused by a difference in trailing zeros. So, i believe that removing trailing zeros from the output of as.character(x) solves the problem with the reversed order in as.numeric(levels(factor(x))) entirely. A patch against R-devel_2009-05-22, which eliminates trailing zeros from as.character(x), but makes no other changes to as.character(x), is in an attachment. Using the patch, we obtain a better result also in the following. nums <- 0.3 + 2e-16 * c(-2,-1,1,2) factor(nums) # [1] 0.3 0.3 0.3 0.3 # Levels: 0.3 Petr....
2009 Jan 21
0
patch for src/main/character.c
...' that modifies in-place the logical vector of matched/unmatched flags. Having the inversion done in just one place instead of four locations in the code should make it simpler to understand, maintain, and further extend the code. The patch was made based on the src/main/character.c file in R-devel_2009-01-20. Patched code was successfully compiled and tested on 32bit Ubuntu 8.04. Regards, Wacek -- ------------------------------------------------------------------------------- Wacek Kusnierczyk, MD PhD Email: waku at idi.ntnu.no Phone: +47 73591875, +47 72574609 Department of Computer and I...
2009 May 20
3
qbinom (PR#13711)
Full_Name: Wolfgang Resch Version: R 2.8.1 GUI 1.27 OS: OS X 10.4.11 Submission from: (NULL) (137.187.89.14) Strange behavior of qbinom: > qbinom(0.01, 5016279, 1e-07) [1] 0 > qbinom(0.01, 5016279, 2e-07) [1] 16 > qbinom(0.01, 5016279, 3e-07) [1] 16 > qbinom(0.01, 5016279, 4e-07) [1] 16 > qbinom(0.01, 5016279, 5e-07) [1] 0