create_memo()
creates an R Markdown for a memo to go
with your academic project.
create_memo(path)
path | a path in which to place the memo file. Defaults to current
working directory in the absence of a user-specified argument. User-supplied
arguments here should be understood as subdirectories relative to current
working directory. Assume that the current working directory is something
like |
---|
create_memo()
creates a memo.Rmd
file in the path
requested by user. Users can create a memo at any time during the submission
timeline of the academic project, but I think of these documents as
typically something a user writes when offered an opportunity to revise and
resubmit a manuscript. That would explain why the skeleton file is
structured the way it is.
if (FALSE) { # Creates a `memo.Rmd` file in working directory create_memo() # Creates a `memo.Rmd` in subdirectory of working directory create_memo("subdirectory") }