Hello everyone,
I am glad to announce the first version of the RProjectConnector, a binding between Pharo and R using NativeBoost.
You can now call directly your R methods from Pharo:
data := (1 to: 1000) collect: #yourself.
res := (#acf asRFunctionWith: {data}) eval
To use it, you should copy the R libraries near the Pharo VM (see the documentation on SmalltalkHub to see how to proceed) and
Gofer it
smalltalkhubUser: 'VincentBlondeau' project: 'RProjectConnector';
configuration;
loadStable
Don’t forget to relaunch Pharo after the installation to be able to use the connector.
The sources are available on Smalltalkhub:
http://smalltalkhub.com/#!/~VincentBlondeau/RProjectConnector
if you want to participate, just ask me!
Cheers,
Vincent BLONDEAU