Skip to contents

[Experimental]
Generate a report as an HTML or Excel file base on RECIST checks made by check_recist().

Usage

recist_report_html(
  recist_check,
  output_file = "recist_check.html",
  title = "RECIST Check",
  open = TRUE
)

recist_report_xlsx(
  recist_check,
  output_file = "recist_check.xlsx",
  open = TRUE
)

Arguments

recist_check

the result of check_recist()

output_file

the report file name.

title

the HTML report title.

open

whether to open the report afterward.

Value

output_file invisibly. Called for side effects.

Examples

# we unfortunately cannot provide a flawed simulated recist dataset, at least not yet
if (FALSE) { # \dontrun{
db = read_database()
mapping = gr_recist_mapping()
recist_check = check_recist(db$rc, mapping=mapping)
recist_check
recist_report_html(recist_check, title="RECIST Check - Study XXX")
recist_report_xlsx(recist_check)
} # }