Re: [R] R API call from delphi

2005-09-10 Thread Dieter Menne
Laurent TESSIER famille.tessier at wanadoo.fr writes:

 Has anyone tried to call R API from Delphi under windows ? 

I have written a wrapper for Erich Neuwirth's RDCOM.

http://www.menne-biomed.de/download/download.html

Dieter

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html


[R] R API call from delphi

2005-09-08 Thread Laurent TESSIER
Hello,
Has anyone tried to call R API from Delphi under windows ? How was it done if 
it was ? Or has anyone any idea about how it could be done ?
Thanks for your answers
Laurent Tessier
[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html


Re: [R] R API call from delphi

2005-09-08 Thread Duncan Temple Lang

On approach is to create a native/foreign interface to R by
linking R as a library (libR.a and R.dll) file and
calling the C routines in the library to
i) initialize the R interpreter
   ii) call an R function

We have done this with many languages and the procedure is well
understood at this point, but requires some C-level programming
and converting between the standard data types of both systems.

Another approach is to use R via DCOM.  There are two different
approaches to this. One has the R interpreter as the DCOM
server and the client (the Delphi application here) would send
R commands to that server. The other approach has regular
DCOM servers that are implemented via R functions.  (The
ability to send R commands is a simple case of this.)  It is up
to you to define the servers via a few extra lines of R code.

I would suggest you pursue the DCOM route unless you are
keen to do the necessary work to embed the R  library
in Delphi and deal with some technical details about
calling conventions of C routines.

  D

Laurent TESSIER wrote:
 Hello,
 Has anyone tried to call R API from Delphi under windows ? How was it done if 
 it was ? Or has anyone any idea about how it could be done ?
 Thanks for your answers
 Laurent Tessier
   [[alternative HTML version deleted]]
 
 __
 R-help@stat.math.ethz.ch mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html


Re: [R] R API call from delphi

2005-09-08 Thread Francisco J. Zagmutt
Follow this thread 
http://finzi.psych.upenn.edu/R/Rhelp02a/archive/50598.html

Cheers

Francisco

From: Laurent TESSIER [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: r-help@stat.math.ethz.ch
Subject: [R] R API call from delphi
Date: Thu,  8 Sep 2005 17:47:49 +0200 (CEST)

Hello,
Has anyone tried to call R API from Delphi under windows ? How was it done 
if it was ? Or has anyone any idea about how it could be done ?
Thanks for your answers
Laurent Tessier
   [[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! 
http://www.R-project.org/posting-guide.html

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html