Skip to content

node1111/rinside

Repository files navigation

RInside Build StatusLicenseCRANDownloads

Easy embedding of R inside C++

About

The RInside package provides a few classes for seamless embedding of R inside of C++ applications by relying on Rcpp.

Examples

Provided with the package itself are eight subdirectories with examples: from more than a dozen basic command-line examples (in directory standard) to graphical user-interfaces (using both Qt and Wt), linear algebra with Armadillo and Eigen, parallel computing with MPI to a sandboxed server.

The simplest example (modulo its header) is examples/standard/rinside_sample0.cpp

#include<RInside.h>// for the embedded R via RInsideintmain(int argc, char *argv[]){RInside R(argc, argv); // create an embedded R instance  R["txt"] = "Hello, world!\n"; // assign a char* (string) to 'txt' R.parseEvalQ("cat(txt)"); // eval the init string, ignoring any returnsexit(0)}

The Qt example directory produces this application for showing how to use R (to estimate densities) inside a C++ executable (providing the GUI):

The code is portable across operating systems. Similar, the Wt example directory contains this C++-based web application doing the same:

See Also

The RInside web page has some more details.

Authors

Dirk Eddelbuettel and Romain Francois

License

GPL (>= 2)

About

Seamless embedding of R in C++ programs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++70.5%
  • CMake11.1%
  • Makefile9.8%
  • R7.1%
  • C0.9%
  • Shell0.5%
  • CSS0.1%