| Title: | Shortcuts for File Creation with Informative Prefixes |
|---|---|
| Description: | Provides functions for quickly creating R and Python scripts, as well as 'Rmarkdown' or Quarto documents with automatically assigned name prefixes. Prefixes are either file counts (e.g. "001") or dates (e.g. "2022-09-26"). |
| Authors: | Johannes Brachem [aut, cre] (ORCID: <https://orcid.org/0000-0001-7884-4631>) |
| Maintainer: | Johannes Brachem <[email protected]> |
| License: | MIT + file LICENSE |
| Version: | 0.1.0 |
| Built: | 2026-05-25 09:29:00 UTC |
| Source: | https://github.com/jobrachem/organizr |
r() creates an R script.
py() creates a Python script.
rmd() creates an Rmarkdown document.
qmd() creates a Quarto document.
r( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() ) qmd( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() ) rmd( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() ) py( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() )r( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() ) qmd( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() ) rmd( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() ) py( name, prefix_by = c("count", "date"), proj_path = here::here(), open = rlang::is_interactive() )
name |
A character string; name of the script. |
prefix_by |
Which prefix to use. Can be |
proj_path |
Project path. |
open |
If |
Orgnizr allows you to set some global options. See https://github.com/jobrachem/organizr for details.
The filepath as a character string.