RSetup.jl

A Julia module for managing R package dependencies and environment setup.

Overview

RSetup.jl provides utilities to:

  • Initialize the R environment within Julia
  • Verify and install required R packages
  • Manage R library paths

Installation

using Pkg
Pkg.add("RSetup")

Quick Start

using RSetup

# Setup R environment with default packages
setup_r_environment()

# Check specific packages
check_r_packages(["classInt", "remotes"])

Features

  • Automatic R environment initialization
  • Package dependency verification
  • Support for custom R library paths
  • Logging of installation and setup steps