Get GFCR report for project(s)
mermaid_get_gfcr_report(project, save = NULL, token = mermaid_token())
A way to identify the project(s). Can be project IDs (passed as a character vector directly) or projects resulting from mermaid_get_my_projects
or mermaid_search_my_projects
. Defaults to the projects listed via mermaid_get_default_project
, if available.
Excel file to save GFCR report to - .xlsx or xls file. Optional.
API token. Authenticate manually via mermaid_auth
, or automatically when running any project- or user-specific functions (like this one).
if (FALSE) { # \dontrun{
projects <- mermaid_get_my_projects()
projects %>%
head(1) %>%
mermaid_get_gfcr_report()
} # }