Re: [Rd] efficiency of sample() with prob.

2005-06-24 Thread Martin Maechler
> "Bo" == Bo Peng <[EMAIL PROTECTED]> > on Fri, 24 Jun 2005 10:32:45 -0500 writes: Bo> On 6/24/05, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: >> `Research' involves looking at all the competitor methods, devising a >> near-optimal strategy and selecting amongst methods ac

Re: [Rd] efficiency of sample() with prob.

2005-06-24 Thread Bo Peng
On 6/24/05, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: > `Research' involves looking at all the competitor methods, devising a > near-optimal strategy and selecting amongst methods according to that > strategy. It is not a quick fix we are looking for but something that > will be good for the lo

Re: [Rd] Embedding R in C application

2005-06-24 Thread Chad.P.Jenness
I have read this section and it appears to be what I am looking for. Thanks for all of your help, Chad Jenness 763-229-0427 -Original Message- From: Prof Brian Ripley [mailto:[EMAIL PROTECTED] Sent: Friday, June 24, 2005 9:08 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; r-devel@r-pro

Re: [Rd] Embedding R in C application

2005-06-24 Thread Prof Brian Ripley
You need to read the correct part of the manual (and you need a manual from R >= 2.1.0). You are writing a front-end, so read * Linking GUIs and other front-ends to R:: as Duncan suggested. Your comments are not at all consistent with what I wrote there. On Fri, 24 Jun 2005 [EMAIL PROTECTED]

Re: [Rd] Capitalize the title in DESCRIPTION files? (PR#7969)

2005-06-24 Thread ripley
On Fri, 24 Jun 2005 [EMAIL PROTECTED] wrote: > Full_Name: David Firth > Version: 2.1.1 > OS: Mac OS X > Submission from: (NULL) (137.205.240.25) > > > A small inconsistency in the "Writing R Extensions" manual: at > http://cran.r-project.org/doc/manuals/R-exts.html#The-DESCRIPTION-file > the disp

Re: [Rd] Embedding R in C application

2005-06-24 Thread Chad.P.Jenness
I have done this and it sounded like all that I needed to do is #include to get access to R functionality. However, I was getting compiling errors when attempting to make an R function call directly from C, so I did some research, and this is where I saw the reference to needing the libR.so. By

[Rd] Capitalize the title in DESCRIPTION files? (PR#7969)

2005-06-24 Thread d . firth
Full_Name: David Firth Version: 2.1.1 OS: Mac OS X Submission from: (NULL) (137.205.240.25) A small inconsistency in the "Writing R Extensions" manual: at http://cran.r-project.org/doc/manuals/R-exts.html#The-DESCRIPTION-file the displayed example has Title: My first collection of functions

Re: [Rd] Embedding R in C application

2005-06-24 Thread Duncan Murdoch
On 6/24/2005 9:18 AM, [EMAIL PROTECTED] wrote: > To whom it may concern, > I am very interested in embedding the R functionality in our > application. This is a C application that currently runs on Win32, but > will also run on Linux in the future. From the material that I have > seen, I need R co

[Rd] Embedding R in C application

2005-06-24 Thread Chad.P.Jenness
To whom it may concern, I am very interested in embedding the R functionality in our application. This is a C application that currently runs on Win32, but will also run on Linux in the future. From the material that I have seen, I need R compiled as a shared library to evaluate R expressions from