Skip to contents

This function creates a new project structure that uses Quarto for documentation with results generated from within the Quarto document. The project includes:

  • R code directory

  • Quarto document setup

  • Results directory with date-based organization

  • Git configuration

  • Project initialization code

Usage

create_project_quarto_internal_results(home, results)

Arguments

home

Location of the main project directory

results

Location of the results directory

Value

Nothing. Creates project structure and files.

Details

The function creates:

  • Basic project structure with R and Quarto directories

  • .gitignore files for R and Quarto

  • Run.R script for project initialization and document rendering

  • Quarto configuration (_quarto.yml)

  • Example Quarto document (quarto.qmd)

  • RStudio project file

Examples

if (FALSE) { # \dontrun{
# Create a new project
org::create_project_quarto_internal_results(
  home = paste0(tempdir(), "/my_project"),
  results = paste0(tempdir(), "/results")
)
} # }