[EMAIL PROTECTED] wrote:
> doesn't:
> dbGetQuery(conn, "\nselect * from dual")
> dbGetQuery(conn, "select\n * from dual")
> dbGetQuery(conn, "/* comment */ select * from dual")
This sounds like my doing. What version of Oracle are you using?
Oracle 9i has a bug that interferes with the docume
The old apropos started with:
if (!is.character(what))
what <- as.character(substitute(what))
The new one has:
if (character.only)
stopifnot(is.character(what))
else what <- as.character(substitute(what))
i.e., the check for is.character(what) is missing. This has the
Hi, Duncan, Marc:
Thanks. MinGW 5.1.2 seemed to install OK.
Best Wishes,
Spencer Graves
Duncan Murdoch wrote:
> Their automatic installer is a bit flaky. You may need to install the
> packages manually. And as Marc pointed out, 5.0.3 is no longer the
> latest. I haven
in 2.4.1:
under Value,
"The replacment [sic] form sets the formals of a function ..."
signature.asc
Description: OpenPGP digital signature
__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel
I stumbled upon this when using update() (specifically update.lm()). If
in the original call to lm(), say
a <- lm (y ~ x + z, data = mydata)
where y and z are in data frame mydata but x is in the global environment.
Then if later I run,
a0 <- update (a, ~ . - z)
a0$model will contain values
Their automatic installer is a bit flaky. You may need to install the
packages manually. And as Marc pointed out, 5.0.3 is no longer the
latest. I haven't tried 5.1.2 yet, but I'll probably update soon.
Duncan Murdoch
On 12/21/2006 4:07 PM, Spencer Graves wrote:
> Hi, All:
>
> I'm ha
On Thu, 2006-12-21 at 13:07 -0800, Spencer Graves wrote:
> Hi, All:
>
> I'm having trouble installing MinGW 5.0.3, trying to follow Duncan
> Murdoch's suggestions (http://www.murdoch-sutherland.com/Rtools/). I
> download "MinGW-5.0.3.exe" as he suggested. After double-clicking on
> it,
Hi, All:
I'm having trouble installing MinGW 5.0.3, trying to follow Duncan
Murdoch's suggestions (http://www.murdoch-sutherland.com/Rtools/). I
download "MinGW-5.0.3.exe" as he suggested. After double-clicking on
it, I get past "Welcome to MinGW" and select either "Download and
insta
Luke Tierney wrote:
> On Thu, 21 Dec 2006, [EMAIL PROTECTED] wrote:
>
>
>> Prof Brian Ripley wrote:
>>
>>> On Thu, 21 Dec 2006, Peter Dalgaard wrote:
>>>
>>> [...]
>>>
>>>
>>>
This seems reproducible on Linux, except that it goes into an infinite
loop. The lm call seems to
On Thu, 21 Dec 2006, [EMAIL PROTECTED] wrote:
> Prof Brian Ripley wrote:
>> On Thu, 21 Dec 2006, Peter Dalgaard wrote:
>>
>> [...]
>>
>>
>>> This seems reproducible on Linux, except that it goes into an infinite
>>> loop. The lm call seems to be the real culprit:
>>>
>>>
testfun <- function(
Hi Sophie,
(It is not good to abuse the bug system to asking for help that way...
as others no doubt has already written. R-help may be a more
appropriate channel for your questions)
One possibility is your "linux - mandriva 2007 - 64bits"
assertion. I don't use Mandriva myself (my work machine i
Prof Brian Ripley wrote:
> On Thu, 21 Dec 2006, Peter Dalgaard wrote:
>
> [...]
>
>
>> This seems reproducible on Linux, except that it goes into an infinite
>> loop. The lm call seems to be the real culprit:
>>
>>
>>> testfun <- function(aa=aa) return(aa)
>>> testfun()
>>>
>> Error
On Thu, 21 Dec 2006, Peter Dalgaard wrote:
[...]
> This seems reproducible on Linux, except that it goes into an infinite
> loop. The lm call seems to be the real culprit:
>
> > testfun <- function(aa=aa) return(aa)
> > testfun()
> Error in testfun() : recursive default argument reference
> > te
[EMAIL PROTECTED] wrote:
> Full_Name: Robert Denham
> Version: R-2.4.1
> OS: Windows Xp
> Submission from: (NULL) (61.88.57.1)
>
>
> R gui exits without warning when I run a function which has an argument with a
> default that is not found.
>
> This was a result of an error in a function I wrote,
On Wed, 20 Dec 2006 20:04:47 +0100 (CET)
[EMAIL PROTECTED] wrote:
> Full_Name: Matja Jeran
> Version: R-base-2.4.1-2.1.i58
> OS: OpenSuse linux 10.2
> Submission from: (NULL) (85.10.21.55)
>
>
> I have a FRESH installation of Opensuse linux 10.2
> I have downloaded R from http://cran.at.r-proje
The problem is rather that 'aa' *is* found: default arguments are looked
for within the body of the function, and so the calculation of 'aa' is
recursive. Consider the simpler case
> testfun <- function(aa=aa) {aa <- c(aa); aa}
> testfun()
Error in testfun() : recursive default argument referen
16 matches
Mail list logo