This function creates a new project structure that uses Quarto for documentation with results generated outside the Quarto document. This approach separates data processing from documentation, making it easier to manage large analyses.

create_project_quarto_external_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, data processing, 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_external_results(
  home = paste0(tempdir(), "/my_project"),
  results = paste0(tempdir(), "/results")
)
} # }