https://github.com/eddelbuettel/rinside
Seamless embedding of R in C++ programs
https://github.com/eddelbuettel/rinside
c-plus-plus cran embedded r r-package
Last synced: about 1 year ago
JSON representation
Seamless embedding of R in C++ programs
- Host: GitHub
- URL: https://github.com/eddelbuettel/rinside
- Owner: eddelbuettel
- Created: 2013-12-28T00:32:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-10-28T16:11:14.000Z (over 1 year ago)
- Last Synced: 2025-03-31T20:06:40.275Z (about 1 year ago)
- Topics: c-plus-plus, cran, embedded, r, r-package
- Language: C++
- Size: 1.11 MB
- Stars: 137
- Watchers: 9
- Forks: 38
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
Awesome Lists containing this project
README
## RInside: Easy embedding of R inside C++ (and C)
[](https://github.com/eddelbuettel/rinside/actions?query=workflow%3Aci)
[](https://www.gnu.org/licenses/gpl-2.0.html)
[](https://cran.r-project.org/package=RInside)
[](https://cran.r-project.org/package=RInside)
[](https://packages.debian.org/sid/r-cran-rinside)
[](https://cran.r-project.org/package=RInside)
[](https://github.com/eddelbuettel/rinside)
### About
The RInside package provides a few classes for seamless embedding of [R](https://www.r-project.org) inside of
C++ applications by relying on [Rcpp](https://www.rcpp.org/).
### Examples
Provided with the package itself are nine subdirectories with examples: from more than a dozen basic command-line examples (in directory
`standard`) to graphical user-interfaces (using both [Qt](https://www.qt.io/) and Wt), linear algebra with
[Armadillo](https://arma.sourceforge.net/) and [Eigen](https://eigen.tuxfamily.org/index.php?title=Main_Page), parallel computing with MPI to a
sandboxed server, and (since release 0.2.16) a simple (and more limited) interface for embedding insice C applications.
The simplest example (modulo its header) is [examples/standard/rinside_sample0.cpp](inst/examples/standard/rinside_sample0.cpp)
```c++
#include // for the embedded R via RInside
int main(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 returns
exit(0);
}
```
The [Qt example directory](https://github.com/eddelbuettel/rinside/tree/master/inst/examples/qt) 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](https://github.com/eddelbuettel/rinside/tree/master/inst/examples/wt)
contains this C++-based web application doing the same:

### See Also
The [RInside](https://dirk.eddelbuettel.com/code/rinside.html) web page has
some more details.
### Authors
Dirk Eddelbuettel, Romain Francois, and Lance Bachmeier
### License
GPL (>= 2)