froggeR: Leap into structured Quarto projects
R has strong conventions for packages, but analytical projects have not always had the same structure. My own projects were no exception. Scripts, Quarto documents, stylesheets, and data files piled up in root directories like laundry on a chair. Inspired by the research compendium (Marwick, Boettiger, & Mullen, 2018), {froggeR} gives your Quarto projects a predictable layout: R/ for scripts, analysis/ for Quarto (and .Rmd) documents, data/ for data files, www/ for assets. The same conventions carry over whether you're writing an analysis, building an R package, or picking up a new language.
install.packages("froggeR")
froggeR::init(path = "my_project"){froggeR} gives every project a consistent layout so you spend time analyzing, not organizing:
- Structure by default:
init()downloads the latest scaffold and you're working in seconds. Scripts go inR/, Quarto documents inanalysis/, assets inwww/, data indata/. - Opinionated starting points:
R/_load.R,R/_libraries.R, andR/_data_dictionary.Rgive every project a consistent entry point.write_quarto()creates pre-formatted.qmdfiles with your author info and branding baked in. - Configure once, reuse everywhere:
write_variables()andwrite_brand()create your metadata and branding files. Save globally withsave_variables()andsave_brand(), and every future project picks them up automatically. - Protected by default: An opinionated
.gitignoreand pre-commit hooks keep sensitive data and common R artifacts out of version control. - Transferable habits: The same directory conventions used here mirror what you'll find in R packages, Shiny frameworks like rhino, and other languages entirely.
install.packages("froggeR")Initialize a complete project with a single command:
froggeR::init(path = "my_new_project")This creates:
my_new_project/
├── R/
│ ├── _data_dictionary.R # Variable labels and metadata
│ ├── _libraries.R # Centralized package loading
│ └── _load.R # Sources everything. Your entry point.
├── analysis/
│ ├── index.qmd # Main Quarto document
│ └── references.bib # Bibliography
├── www/
│ ├── custom.scss # Custom styling
│ └── tables.js # Table enhancements
├── logos/ # Brand logos
├── data/ # Data files (gitignored)
├── _brand.yml # Quarto brand configuration
├── _quarto.yml # Quarto project configuration
├── _variables.yml # Author metadata
├── .gitignore # Opinionated git protection
├── .pre-commit-config.yaml # Pre-commit hook configuration
└── README.md
{froggeR} stores configuration at two levels: global (system-wide) and project-local. Set it up once, and every future project inherits your settings.
froggeR::write_variables() # Create/edit _variables.yml (author metadata)
froggeR::write_brand() # Create/edit _brand.yml (colors, logos, typography)Both functions create the file if it does not exist, or open it for editing if it does. New files start from your global config or the remote template. When you're happy, persist to global config:
froggeR::save_variables() # Save project metadata for reuse
froggeR::save_brand() # Save project branding for reuseGlobal settings populate every new project created with init(). Edit the project copy directly when you need something specific.
Quickly generate new Quarto documents with pre-formatted headers:
froggeR::write_quarto(filename = "monthly_report")Your saved metadata automatically populates author information and branding.
{froggeR} includes a .gitignore that covers R artifacts, Quarto build files, data files, and common sensitive patterns:
froggeR::write_ignore()One set of rules. Comprehensive by default. If your project needs additional exclusions, edit .gitignore directly.
Generate a SCSS template for custom document styling:
froggeR::write_scss()
froggeR::write_scss("tables")Provides a formatted stylesheet with:
- SCSS defaults
- SCSS mixins
- SCSS rules
Customize your document's appearance by uncommenting desired styles.
| Function | Description |
|---|---|
init() |
Initialize a complete project from the latest remote template |
write_quarto() |
Create a Quarto document in analysis/ |
write_variables() |
Create a _variables.yml metadata file |
write_brand() |
Create a _brand.yml brand configuration file |
save_variables() |
Save project _variables.yml to global config |
save_brand() |
Save project _brand.yml to global config |
write_ignore() |
Create an opinionated .gitignore |
write_scss() |
Create a custom.scss styling template in www/ |
- Documentation: froggeR website for full function references and vignettes
- Vignettes:
- Issues: Found a bug or have a feature request? Open an issue
We welcome contributions and ideas! Here's how you can help:
- Report bugs - Open an issue with a clear description
- Suggest features - Have an idea? Submit a feature request
- Share feedback - Let us know how
{froggeR}is working for you - Improve documentation - Help us make docs clearer and more complete
{froggeR} is licensed under the MIT License. See the LICENSE file for details.
Developed by Kyle Grealis
