Re: [Rd] Linux installation

2008-05-09 Thread Sklyar, Oleg (MI London)
Michael: 1) this IS a wrong list for such questions. You mention r-help, but this is Rd (developers) and your question is completely unrelated to the topics of the list! 2) In Linux, any time you want to compile anything against anything and using binary distributions you need *-devel or *-dev

Re: [Rd] R-2.8.0 : get platform device with get(getOption(device))

2008-05-09 Thread Paul Roebuck
On Thu, 8 May 2008, Peter Dalgaard wrote: Prof Brian Ripley wrote: Here is the NEWS item, for 2.5.0 ooptions(device = ) now accepts a function object as well as the name of a function. The construct in the subject line has been broken ever since. Yet the change produced

Re: [Rd] R-2.8.0 : get platform device with get(getOption(device))

2008-05-09 Thread Prof Brian Ripley
If you set, say options(device=pdf) you get the old behaviour. You really cannot assume that session settings will be unchanged unless you set them yourself. On Fri, 9 May 2008, Paul Roebuck wrote: On Thu, 8 May 2008, Peter Dalgaard wrote: Prof Brian Ripley wrote: Here is the NEWS

Re: [Rd] Have you ever experienced this problem with REAL in a C code

2008-05-09 Thread Prof Brian Ripley
These messages mean that R's internal code is encountering the wrong SEXPTYPE. This almost always means one of - lact of PROTECTion, so objects have been garbage-collected before use. - memory corruption, most often by writing outside array bounds. See the chapter in 'Writing R Extensions'

[Rd] comparison (PR#11421)

2008-05-09 Thread ligges
In R-2.7.0 release as well as patched (from yesterday) under Windows XP, R crashes when typing, e.g.: repeat{ rep(1, 1) == ö } Note that I cannot reproduce the error in R-2.6.2 nor R-devel. Uwe Ligges --please do not edit the information below-- Version: platform =

Re: [Rd] Linux installation

2008-05-09 Thread Gavin Simpson
On Fri, 2008-05-09 at 09:20 +0100, Sklyar, Oleg (MI London) wrote: Michael: 1) this IS a wrong list for such questions. You mention r-help, but this is Rd (developers) and your question is completely unrelated to the topics of the list! Oleg, the gist of Michael's email was to make a

Re: [Rd] Have you ever experienced this problem with REAL in a C code

2008-05-09 Thread Mathieu Ribatet
Thanks. These are good suggestions. I'll have a closer look (again) at the code. Best, Mathieu Prof Brian Ripley a écrit : These messages mean that R's internal code is encountering the wrong SEXPTYPE. This almost always means one of - lact of PROTECTion, so objects have been

Re: [Rd] comparison (PR#11421)

2008-05-09 Thread Duncan Murdoch
On 5/9/2008 7:10 AM, [EMAIL PROTECTED] wrote: In R-2.7.0 release as well as patched (from yesterday) under Windows XP, R crashes when typing, e.g.: repeat{ rep(1, 1) == ö } Note that I cannot reproduce the error in R-2.6.2 nor R-devel. I can confirm the crash in a US English locale

[Rd] Incorrect fix for PR#9316: Cook's Distance plot.lm

2008-05-09 Thread Heather . Turner
This is a multi-part message in MIME format. --030304040002000407020206 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Bug PR#9316 noted an inconsistency between the Cook's distance contours on plot.lm(x, which = 5) and the values given by

Re: [Rd] Linux installation

2008-05-09 Thread Michael Steinbeck-Reeves
On Thu, 2008-05-08 at 15:17 -0500, Marc Schwartz wrote: on 05/08/2008 10:39 AM Michael Steinbeck-Reeves wrote: I have just installed R under Linux and had a tricky time finding out that I needed to install r-devel as it was not suggested by yum and does not appear in any of the FAQs.

[Rd] str and class

2008-05-09 Thread Dr Heather Turner
In previous versions of the gnm package, the terms component of gnm objects had a classID attribute. This caused problems when used with str as the following simple example illustrates: x - 1 attr(x, classID) - type1 str(x) Class 'type1' Class 'type1' Class 'type1' Class 'type1' Class

Re: [Rd] str and class

2008-05-09 Thread Martin Maechler
HT == Heather Turner [EMAIL PROTECTED] on Fri, 09 May 2008 18:00:37 +0100 writes: HT In previous versions of the gnm package, the terms HT component of gnm objects had a classID HT attribute. This caused problems when used with str as HT the following simple example