From 5fd9ad39ae30e8af14708960eb0fa46d362942cc Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Thu, 18 Jul 2024 16:11:48 +0000 Subject: [PATCH] add Zenodo badge (#536) * add Zenodo badge * ignore versioned Manifest and vim temp files --- .gitignore | 3 +++ README.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index d85e3290..e9078ff4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ Manifest.toml +Manifest-v*.toml deps/deps.jl docs/build docs/gh-pages @@ -6,3 +7,5 @@ docs/site deps/build.log lcov.info *.cov +*.swp +*\~ diff --git a/README.md b/README.md index 1be6ad09..725a098e 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,9 @@ [![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.