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: 29 days ago
JSON representation

Call R from Julia

Lists

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)

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).