R/report.R
report.Rd
Create a report
report( paper, modules = c("exact_p", "marginal", "effect_size", "statcheck", "osf_check", "retractionwatch", "ref_consistency"), output_file = paste0(paper$name, "_report.", output_format), output_format = c("qmd", "html", "pdf") )
a paper object
a vector of modules to run (names for built-in modules or paths for custom modules)
the name of the output file
the format to create the report in
the file path the report is saved to
if (FALSE) { # \dontrun{ filename <- demoxml() paper <- read_grobid(filename) report(paper) } # }