README.md

org

CRAN status CRAN downloads

Overview

org is a framework for organizing R projects with a standardized structure. It helps manage the three main components of most analyses:

Each component has specific requirements and best practices that org helps enforce. The package provides tools to:

Installation from CRAN

install.packages("org")

Getting started

  1. Read the introduction vignette
  2. Run help(package="org") for detailed function documentation

Quick example

# Initialize a new project
org::initialize_project(
  env = .GlobalEnv,
  home = "/path/to/project",      # Contains Run.R and R/ folder
  results = "/path/to/results",   # Where results will be stored
  data_raw = "/path/to/data"      # Raw data location
)

# Access project settings
org::project$results_today  # Today's results folder
org::project$data_raw      # Raw data folder

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This package is licensed under the MIT License - see the LICENSE file for details.



Try the org package in your browser

Any scripts or data that you put into this service are public.

org documentation built on April 9, 2026, 9:08 a.m.