Re: [Rd] bug: sticky symbol refs? (PR#9555)

2007-03-07 Thread Wolfgang Huber
Dear Peter, would the problem persist if you maintained your favorite set of R functions in a proper package rather than in some .RData file? Packages offer a lot of goodies such as namespaces, version numbers, man pages. Best wishes Wolfgang

[Rd] Garbage collector crashes after calling a C function

2007-03-07 Thread Sole Acha, Xavi
Dear listers, a few days ago I asked a question about a problem I had with a C function programmed by myself to be called from R. Thanks to your help, I have been able to look a bit further into it, so now I can be a bit more specific when telling what happens. The fact is that, when my

Re: [Rd] Garbage collector crashes after calling a C function

2007-03-07 Thread Sole Acha, Xavi
Sorry, that was a mistake. You are right Antonio, I wanted to say the -g flag. Xavi. -Mensaje original- De: Antonio, Fabio Di Narzo [mailto:[EMAIL PROTECTED] Enviado el: dimecres, 7 / març / 2007 13:00 Para: Sole Acha, Xavi CC: r-devel@stat.math.ethz.ch Asunto: Re: [Rd] Garbage

Re: [Rd] Garbage collector crashes after calling a C function

2007-03-07 Thread Antonio, Fabio Di Narzo
2007/3/7, Sole Acha, Xavi [EMAIL PROTECTED]: Dear listers, a few days ago I asked a question about a problem I had with a C function programmed by myself to be called from R. Thanks to your help, I have been able to look a bit further into it, so now I can be a bit more specific when

Re: [Rd] Garbage collector crashes after calling a C function

2007-03-07 Thread Duncan Murdoch
On 3/7/2007 6:42 AM, Sole Acha, Xavi wrote: Dear listers, a few days ago I asked a question about a problem I had with a C function programmed by myself to be called from R. Thanks to your help, I have been able to look a bit further into it, so now I can be a bit more specific when

[Rd] possible bug in model.frame.default

2007-03-07 Thread Thibaut Jombart
Dear list, I may have found a bug in model.frame.default (called by the lm function). The problem arises in my R dev version but not in my R 2.4.0. Here is my config : version _ platform

Re: [Rd] Wish: Option to configure the default par() (PR#9545)

2007-03-07 Thread thomas . friedrichsmeier
--nextPart4163908.Y9KBlY7Qjy Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 06 March 2007 17:56, Greg Snow wrote: Another approach may be to use hooks (see ?setHook). The plot.new function already has a hook, so

Re: [Rd] possible bug in model.frame.default

2007-03-07 Thread Duncan Murdoch
On 3/7/2007 9:47 AM, Thibaut Jombart wrote: Dear list, I may have found a bug in model.frame.default (called by the lm function). The problem arises in my R dev version but not in my R 2.4.0. Here is my config : I don't see this bug in r40818 in Windows, and the log entry for r40817 looks

Re: [Rd] SVG and tooltips, hyperlinks

2007-03-07 Thread Romain Francois
Wolfgang Huber wrote: Dear all, is there a good way to create SVG plots with R whose elements have titles (tooltips) or act as hyperlinks? I am using the RSvgDevice package, which works great - but it doesn't seem to support the notion that plot objects have titles or are act as

Re: [Rd] RJDBC

2007-03-07 Thread Jose Sierra
Thank you Simon. I have used your script with Oracle and Mysql and both returns [1] Java-Object{java.sql.SQLException: No suitable driver} My script is the next: library('rJava') library('DBI') library('RJDBC') drv -

Re: [Rd] possible bug in model.frame.default

2007-03-07 Thread Thomas Lumley
I don't see this bug (in r-devel r40818) but there are two changes between 40814 and 40818 that might have fixed it. -thomas On Wed, 7 Mar 2007, Thibaut Jombart wrote: Dear list, I may have found a bug in model.frame.default (called by the lm function). The problem arises in my R

Re: [Rd] possible bug in model.frame.default

2007-03-07 Thread Robert Gentleman
Please update to the latest snapshot R version 2.5.0 Under development (unstable) (2007-03-05 r40816) where all is well, Thibaut Jombart wrote: Dear list, I may have found a bug in model.frame.default (called by the lm function). The problem arises in my R dev version but not in my R 2.4.0.

Re: [Rd] possible bug in model.frame.default

2007-03-07 Thread Thibaut Jombart
Duncan Murdoch wrote: On 3/7/2007 9:47 AM, Thibaut Jombart wrote: Dear list, I may have found a bug in model.frame.default (called by the lm function). The problem arises in my R dev version but not in my R 2.4.0. Here is my config : I don't see this bug in r40818 in Windows, and the

Re: [Rd] Wish: Option to configure the default par() (PR#9545)

2007-03-07 Thread Gabor Grothendieck
Here are a few ideas: For #1 define: $.Par - function(x, FUN) { par.default - getOption(par.default) if (!is.null(par.default)) do.call(par, par.default) get(FUN, parent.frame()) } Par - structure(NA, class = Par) # and now one can preface any function with Par$ and it will # call par

[Rd] missing axes in irregular lattice plots (PR#9556)

2007-03-07 Thread bill
In the lattice functions, if the first or last panel in a row or column is not at the edge of the array of panels there will be no axis drawn for that row or column, except that when the said panel is the last in the array its right y axis will be drawn. For example, d-data.frame(x=1:20,

[Rd] Small inconsistency in serialize() between R versions and implications on digest()

2007-03-07 Thread Henrik Bengtsson
Hi, I noticed that serialize() gives different results depending on R version, which has implications to the digest() function in the digest package. Note, it does give the same output across platforms. I know that serialize() is under development, but is this expected, e.g. is there some kind

Re: [Rd] Small inconsistency in serialize() between R versions and implications on digest()

2007-03-07 Thread Henrik Bengtsson
To follow up, I went ahead and generated random object to scan for a common header for a given R version, and it seems to be that at most the first 18 bytes are non-data specific, which could be the length of the serialization header. Here is my code for this: scanSerialize - function(object,