Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

doc: remove notes containing syntax errors #658

Merged
merged 1 commit into from
Jul 26, 2024
Merged
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
16 changes: 6 additions & 10 deletions tests/testthat/helper-integration-tests-setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -259,24 +259,20 @@ setup_and_run_FIMS <- function(iter_id,
#' # The `result` list contains components such as `report`, `sdr_report`, and `obj`.
#'
#' validate_fims(
#' report = result$report,
#' sdr = TMB::sdreport(result$obj),
#' sdr_report = result$sdr_report,
#' om_input = om_input_list[[1]],
#' om_output = om_output_list[[1]],
#' em_input = em_input_list[[1]]
#' report = result$report,
#' sdr = TMB::sdreport(result$obj),
#' sdr_report = result$sdr_report,
#' om_input = om_input_list[[1]],
#' om_output = om_output_list[[1]],
#' em_input = em_input_list[[1]]
#' )
#'
#' #' Note: Some sections of the function have commented-out code for additional checks
#' that are not currently active.
validate_fims <- function(
report,
sdr,
sdr_report,
om_input,
om_output,
em_input) {

# Numbers at age
# Estimates and SE for NAA
sdr_naa <- sdr_report[which(rownames(sdr_report) == "NAA"), ]
Expand Down
Loading