-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
SablefishMSE/R/setup_mse_options.R
Line 5 in 40b271a
| #' @export setup_mse_options |
the name does not match the function being exported (and lower down the function is listed, but not exported)
I recommend using
@export and leaving it blank, then the function name won't be hard coded - a la:
#' Setup Management Procedure Object
#'
#' Set MP object list items to reasonable default values.
#'
#' @export
#'
#' @example
#' \dontrun{
#' setup_mp_options()
#' }
setup_mp_options <- function(){
return(
list(
hcr = setup_hcr_options(),
ref_points = list(
spr_target = 0.40
),
management = list(
abc_tac_reduction = 1,
tac_land_reduciton = 1
),
survey_frequency = 1,
assessment_frequency = 1
)
)
}
Metadata
Metadata
Assignees
Labels
No labels