Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions R/run.R
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,17 @@ run_visualize <- function() {
source(dir_src('visualize.R'))
}

#' Runs the modelling step for a startr project.
#'
#' Sources \code{model.R}.
#'
#' @return No return value, called for side effects
#'
#' @export
run_model <- function() {
source(dir_src('model.R'))
}

#' Runs the notebook rendering step for a startr project.
#'
#' Renders an RMarkdown notebook using \code{upstartr::\link[upstartr:render_notebook]{render_notebook}}
Expand Down