[R] Calling R from c in Windows XP

2010-03-27 Thread dkStevens
, is it possible to write a simple interface using a c dll to call R functions from a Visual Basic.net program? If so, is there a simple example? Thanks to all -- View this message in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693440.html Sent from the R help mailing list

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Khanh Nguyen
in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693440.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Erich Neuwirth
If you want to call R from within VB.NET you might want to look at the statconnDCOM server (available at rcom.univie.ac.at) It wraps R into a (D)COM server and therefore allows any (D)COM client to access R on windows. VB.NET is a (D)COM client. On 3/27/2010 3:53 PM, dkStevens wrote: I'm

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread dkStevens
in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693480.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread dkStevens
I have - but when I tried their simple example no luck - too many missing include files to chase down. I'm looking for something more direct, I guess, that I have a little control over. -- View this message in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693478.html

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Khanh Nguyen
find. -- View this message in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693480.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread dkStevens
. I'd rather the latter, hence my post. -- View this message in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693538.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Dirk Eddelbuettel
objects, so I was hoping for something more | direct. I've seen some examples (e.g. RInside) but can't get them to work | -too many include files, etc. that I can't find. | -- | View this message in context: http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693480.html | Sent from the R

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Dirk Eddelbuettel
On 27 March 2010 at 09:02, dkStevens wrote: | This may simply expose my ignorance in this type of coding, but, | unfortunately it's not that simple because I did using the RInside.h and | received several screens of error messages from gcc telling me that it | couldn't find the include file and

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread dkStevens
-R-from-c-in-Windows-XP-tp1693440p1693584.html To unsubscribe from Re: Calling R from c in Windows XP, click here (link removed) =. -- David K Stevens, P.E., Ph.D., Professor Civil and Environmental Engineering Utah Water Research Laboratory 8200 Old Main Hill Logan, UT 84322-8200 435

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Dirk Eddelbuettel
. | | | | View message @ | http://n4.nabble.com/Calling-R-from-c-in-Windows-XP-tp1693440p1693584.html | | To unsubscribe from Re: Calling R from c in Windows XP, click here | (link removed) =. | | | | -- | David K Stevens, P.E., Ph.D., Professor | Civil

Re: [R] Calling R from c in Windows XP

2010-03-27 Thread Martin Morgan
On 03/27/2010 07:53 AM, dkStevens wrote: I'm searching for answers to four questions (I've been searching the net for hours...) In Windows XP, is it possible to call R functions from a c program? (I've found examples for Linux/Unix but not Windows) If so, is there a simple example to