[Rd] Assertion failure in -[RDeviceView lockFocus] (PR#9867)

2007-08-20 Thread towil
Full_Name: tom willems Version: Version: R 2.5.1 (42083) R.app R 2.5.1 GUI 1.20 (4535)/i386 OS: os x Submission from: (NULL) (193.190.114.253) bug report I am not very familiar with system bug's, so forgive me if i write a wrong report. what happend was that R stopped working while ploting a log

[Rd] system() fails with fc.exe (PR#9868)

2007-08-20 Thread joehl
Full_Name: Jens Oehlschlägel Version: 2.5.1 OS: Windows Submission from: (NULL) (62.159.183.42) Even when specifying the full path, the output of fc is not sent to R (neither shown nor returned). For example > system('c:\\WINDOWS\\system32\\fc.exe /?',intern=TRUE) character(0) When I do the sa

Re: [Rd] system() fails with fc.exe (PR#9868)

2007-08-20 Thread ripley
This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --27464147-1509585398-1187640973=:22199 Content-Type: TEXT/PLAIN; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8BIT Try rterm, whe

[Rd] aesthetics of do.call

2007-08-20 Thread Vincent Carey 525-2265
library(MASS) G1 = glm(sp~CW, data=crabs, fam=binomial) G2 = do.call("glm", list(sp~CW, family=binomial, data=crabs)) G1$call is very nice to look at G2$call is very voluminous if we revise do.call to function (what, args, quote = FALSE, envir = parent.frame()) { if (!is.list(args))

[Rd] compiling R under cygwin

2007-08-20 Thread Denham Robert
For various reasons, it suits our workplace to have a cygwin version of R. I am pretty sure that cygwin is still not a supported environment for R, but we have managed to compile R-2.5.1 under cygwin without too many dramas. Our procedure is described below. We still have a few problems compilin

Re: [Rd] aesthetics of do.call

2007-08-20 Thread deepayan . sarkar
On 8/20/07, Vincent Carey 525-2265 <[EMAIL PROTECTED]> wrote: > > > library(MASS) > G1 = glm(sp~CW, data=crabs, fam=binomial) > G2 = do.call("glm", list(sp~CW, family=binomial, data=crabs)) > > G1$call is very nice to look at > G2$call is very voluminous > > if we revise do.call to > > function (wh