[Rd] Running ./tools/rsync-recommended through a proxy

2005-06-28 Thread Douglas Bates
My computers at my office will no longer be able to connect directly to web sites etc. I will be going through a proxy server. The particular server is running squid on port 3128. I have managed to configure web browsers, ssh, apt, svn and a whole lot of other tools to use the proxy server but I

Re: [Rd] Error in compiling R

2005-06-28 Thread Prof Brian Ripley
On Tue, 28 Jun 2005 [EMAIL PROTECTED] wrote: > Thanks, I got this resolved. Now to embed the R.dll into a C > application, do I need to compile R with any shared library flags set? Not for Windows, but all the details are in the `Writing R Extensions' manual. You proabably don't want to use R.

Re: [Rd] boxplot by factor (Package base version 2.1.1) ( PR#7976)

2005-06-28 Thread Gabor Grothendieck
Based on Andy's comment a workaround can consist of not using boxplot.formula, e.g. using the data frame d defined by the original poster (see below): boxplot( by(d, d$b, function(x)x$a) ) On 6/28/05, Liaw, Andy <[EMAIL PROTECTED]> wrote: > The issue is not with boxplot, but with split.

Re: [Rd] Does not run under Mac OS X 10.3.9 (PR#7975)

2005-06-28 Thread stefano iacus
You should give us more feedback if you want us to be of any help to you. Could you please send us the crash report of R? (See Console.app in / Applications/Utilities ) stefano On 28/giu/05, at 06:23, [EMAIL PROTECTED] wrote: > Full_Name: Matthias Wahl > Version: 2.0.1 and 2.1.0a > OS: Mac OS

Re: [Rd] Error in compiling R

2005-06-28 Thread Chad.P.Jenness
Thanks, I got this resolved. Now to embed the R.dll into a C application, do I need to compile R with any shared library flags set? Chad Jenness Electronic Payment Business Services Office: 612-667-9782 Email: [EMAIL PROTECTED] "This message may contain confidential and/or privileged information

Re: [Rd] boxplot by factor (Package base version 2.1.1) ( PR#7976)

2005-06-28 Thread Peter Dalgaard
"Liaw, Andy" <[EMAIL PROTECTED]> writes: > The issue is not with boxplot, but with split. boxplot.formula() > calls boxplot(split(split(mf[[response]], mf[-response]), ...), > but look at what split() returns when there are empty levels in > the factor: > > > f <- factor(gl(3, 6), levels=1:5)

Re: [Rd] Error in compiling R

2005-06-28 Thread Prof Brian Ripley
On Tue, 28 Jun 2005 [EMAIL PROTECTED] wrote: > When compiling R on Windows, I am getting the following error. Does > anyone have any suggestions? Yes, it seems you have corrupted the files during unpacking. Did you use the version of tar in the Rtools.zip? Whatever you used to unpack the fil

Re: [Rd] boxplot by factor (Package base version 2.1.1) ( PR#7976)

2005-06-28 Thread Liaw, Andy
The issue is not with boxplot, but with split. boxplot.formula() calls boxplot(split(split(mf[[response]], mf[-response]), ...), but look at what split() returns when there are empty levels in the factor: > f <- factor(gl(3, 6), levels=1:5) > y <- rnorm(f) > split(y, f) $"1" [1] 0.4832124 1.192

[Rd] Error in compiling R

2005-06-28 Thread Chad.P.Jenness
When compiling R on Windows, I am getting the following error. Does anyone have any suggestions? -- Making package datasets adding build stamp to DESCRIPTION installing R files installing data files preparing package datasets for lazy data loading Error in load(zfile,

Re: [Rd] capabilities() and non-catchable messages

2005-06-28 Thread Henrik Bengtsson
Prof Brian Ripley wrote: > Do you have DISPLAY set pointing to an X11 server you do not have > access to? It seems so. The solution is to set your X11 settings > properly. > > This is coming from Xlib (XOpenDisplay, I believe) and so is not an R > error or warning, and is not output on an R c

[Rd] boxplot by factor (Package base version 2.1.1) (PR#7976)

2005-06-28 Thread mwtoews
I consider this to be an old bug, which also persists in Splus 7. It is unnecessary, and annoying. ## Section 1: Consider a simple data frame with three possible factors (in levels) d <- data.frame(a=sort(rnorm(10)*10), b=factor(c(rep("A",4), rep("C", 6)), levels=c("A","B","C"))) tapply(d$a,