Re: [Rd] invalid regular expression '[a-Z]'

2008-03-06 Thread Henrik Bengtsson
On Wed, Mar 5, 2008 at 11:09 PM, Prof Brian Ripley [EMAIL PROTECTED] wrote: On Wed, 5 Mar 2008, Henrik Bengtsson wrote: On Wed, Mar 5, 2008 at 6:18 PM, Duncan Murdoch [EMAIL PROTECTED] wrote: On 05/03/2008 8:56 PM, Henrik Bengtsson wrote: Hi, just curious, but does anyone know

[Rd] Argument nomatch matched by multiple actual arguments ... %in% - match?!?

2008-03-06 Thread Henrik Bengtsson
When I run R CMD check R.oo on R v2.7.0 devel (2008-03-04 r44677) on WinXP I get the following error while testing examples: Error in match(x, table, nomatch = 0) : formal argument nomatch matched by multiple actual arguments Calls: setMethodS3 - setMethodS3.default - %in% - match Execution

[Rd] Press delete key three times in R-2.6.1 to get segmentation fault (PR#10892)

2008-03-06 Thread org . r-project
Full_Name: Poor Yorick Version: R-2.6.1 OS: 2.4.21-50.ELhugemem #1 SMP Tue May 8 17:10:31 EDT 2007 i686 i686 i386 GNU/Linux Submission from: (NULL) (148.168.40.4) After compiling R-2.6.1 with gcc-4.2.1 pressing the 'delete' key three times in an interactive session causes R to malfunction,

Re: [Rd] Press delete key three times in R-2.6.1 to get segmentation (PR#10898)

2008-03-06 Thread marc_schwartz
[EMAIL PROTECTED] wrote: Full_Name: Poor Yorick Version: R-2.6.1 OS: 2.4.21-50.ELhugemem #1 SMP Tue May 8 17:10:31 EDT 2007 i686 i686 i386 GNU/Linux Submission from: (NULL) (148.168.40.4) After compiling R-2.6.1 with gcc-4.2.1 pressing the 'delete' key three times in an interactive

Re: [Rd] Press delete key three times in R-2.6.1 to get segmentation (PR#10899)

2008-03-06 Thread org . r-project
Marc Schwartz wrote: [EMAIL PROTECTED] wrote: [SNIP] This has been reported previously (over 2 years ago on R version 2.2.1) and was associated with a bug in readline, which is the underlying functionality that handles getting input from the user in the console. Sorry about the

[Rd] parser failed on correct formula (PR#10901)

2008-03-06 Thread revitalyr
Full_Name: Vitaly Reshetyuk Version: 2.6.2 OS: Windows XP SP2 Submission from: (NULL) (92.112.140.118) as.formula (Something~

[Rd] apply(x, 2, mean) fails if x is a data frame containing a matrix (PR#10902)

2008-03-06 Thread timh
data - data.frame(a=1:5, b=I(matrix(6:15,5))) apply(data, 2, mean) Error in dim(newX) - c(prod(d.call), d2) : dims [product 10] do not match the length of object [15] --please do not edit the information below-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system =

Re: [Rd] parser failed on correct formula (PR#10901)

2008-03-06 Thread Duncan Murdoch
On 3/6/2008 12:25 PM, [EMAIL PROTECTED] wrote: Full_Name: Vitaly Reshetyuk Version: 2.6.2 OS: Windows XP SP2 Submission from: (NULL) (92.112.140.118) I don't know if your message got messed up on posting, but that certainly isn't a legal formula. It contains a line break in the middle of

[Rd] Memory allocation error in 2.6.2 (PR#10903)

2008-03-06 Thread bosap
Full_Name: Peter Bosa Version: 2.6.2 OS: RHES 4.2 - 4.5 Submission from: (NULL) (67.138.101.226) I am experiencing a memory allocation error with R 2.6.2 which was not present in previous versions of R (2.4 and 2.2). I have several Linux machines with various Redhat OS versions loaded on them,

Re: [Rd] Memory allocation error in 2.6.2 (PR#10903)

2008-03-06 Thread Henrik Bengtsson
Before submitting a bug report, it is probably wise to bring it up on r-devel first. Remember, someone has to clean out all those false bug reports manually. There are so many potential reasons for your problem, which indicates fragmented memory allocations. One obvious one is that one of the

Re: [Rd] Argument nomatch matched by multiple actual arguments ... %in% - match?!?

2008-03-06 Thread Henrik Bengtsson
Hi, a follow up. If I replace all 'foo %in% bar' in setMethodS3.default() with is.element(foo, bar) the error goes away. Here is is.element(): is.element function (el, set) match(el, set, 0) 0 environment: namespace:base Not much of a difference compared to %in%(), get(%in%) function (x,

[Rd] javareconf (PR#10905)

2008-03-06 Thread Vic . Bancroft
Full_Name: Vic.Bancroft Version: 2.6.2 OS: Red Hat Enterprise Linux ES release 4 (Nahant Update 6) Submission from: (NULL) (66.241.32.158) Running the script, javareconf, output intended for /dev/null is generating an error . . . Here is a patch for the java reconfiguration shell script,

Re: [Rd] Great tool

2008-03-06 Thread Christophe Genolini
I believe that codetools is incredibly usefull, but it is very difficult to learn how to use it... Anythink else thant reading the code available ? For exemple, how to track down free varaible ? I try findGlobals(get(functionNames),FALSE)$variables but it does not work... Christophe Gabor