Skip to contents

Overview

thoth is a comprehensive framework for setting up reproducible analytics projects in R.

library(thoth)
#>  Welcome to thoth! The reproducible analytics framework
#>  DVC is not installed. Some features will be limited.
#>   Visit https://dvc.org/doc/install to install DVC for full functionality.
#>  Did you know? Thoth was the mediator in disputes between gods, especially between Set and Horus.
#> * For help, see: https://sebrauschert.github.io/thoth/

Basic Usage

The main function to create a new analytics project is create_analytics_project():

create_analytics_project(
  "my_analysis",
  use_dvc = TRUE,
  use_docker = TRUE,
  git_init = TRUE
)

This creates a structured project with all the necessary components for reproducible analytics.