Get GFCR report for project(s)

mermaid_get_gfcr_report(project, save = NULL, token = mermaid_token())

Arguments

project

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.

save

Excel file to save GFCR report to - .xlsx or xls file. Optional.

token

API token. Authenticate manually via mermaid_auth, or automatically when running any project- or user-specific functions (like this one).

Examples

if (FALSE) { # \dontrun{
projects <- mermaid_get_my_projects()
projects %>%
  head(1) %>%
  mermaid_get_gfcr_report()
} # }