A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/csids/org below:

csids/org: A system to help you organize projects.

org

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:

To install the development version or access packages that haven't been released on CRAN:

  1. Edit your .Rprofile:
usethis::edit_r_profile()
  1. Add the following configuration:
options(
  repos = structure(c(
    CSVERSE = "https://www.csids.no/drat/",
    CRAN    = "https://cran.rstudio.com"
  ))
)
  1. Restart R and install:
  1. Read the introduction vignette
  2. Run help(package="org") for detailed function documentation
# 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

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

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


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4