Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JuliaInterop/RCall.jl
Call R from Julia
https://github.com/JuliaInterop/RCall.jl
julia r-language
Last synced: 3 months ago
JSON representation
Call R from Julia
- Host: GitHub
- URL: https://github.com/JuliaInterop/RCall.jl
- Owner: JuliaInterop
- License: other
- Created: 2015-01-02T20:33:30.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-07-25T04:47:42.000Z (4 months ago)
- Last Synced: 2024-07-25T21:10:16.097Z (4 months ago)
- Topics: julia, r-language
- Language: Julia
- Homepage:
- Size: 3.67 MB
- Stars: 318
- Watchers: 18
- Forks: 59
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- Vulkan-Guide - RCall.jl
- awesome-julia - Embedded R within Julia
README
# RCall.jl
[![Docs Stable](https://img.shields.io/badge/docs-stable-blue.svg)](http://juliainterop.github.io/RCall.jl/stable)
[![Docs Development](https://img.shields.io/badge/docs-dev-blue.svg)](http://juliainterop.github.io/RCall.jl/dev)[![CI status](https://github.com/JuliaInterop/RCall.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaInterop/RCall.jl/actions/workflows/ci.yml)
[![Code coverage](https://codecov.io/gh/JuliaInterop/RCall.jl/branch/master/graph/badge.svg?token=8ED5Wdm8W9)](https://codecov.io/gh/JuliaInterop/RCall.jl)[![DOI](https://zenodo.org/badge/28725415.svg)](https://zenodo.org/doi/10.5281/zenodo.12771368)
R is a language for statistical computing and graphics that has been around for couple of decades and it has one of the most impressive collections of scientific and statistical packages of any environment. Recently, the Julia language has become an attractive alternative because it provides the remarkable performance of a low-level language without sacrificing the readability and ease-of-use of high-level languages. However, Julia still lacks the depth and scale of the R package environment.
This package, RCall.jl, facilitates communication between these two languages and allows the user to call R packages from within Julia, providing the best of both worlds. Additionally, this is a pure Julia package so it is portable and easy to use.
## Installation
See the [Installation](http://juliainterop.github.io/RCall.jl/stable/installation) section of the documentation.
## Getting Started
See the [Getting Started](http://juliainterop.github.io/RCall.jl/stable/gettingstarted) section of the documentation.
# ggplot2 demonstration
![](ggplot.png)
# Calling Julia from R
See the JuliaCall library to [call Julia from R](https://non-contradiction.github.io/JuliaCall//index.html).