Reports
Source:.github/analyst_guide_reports.md
vivainsights comes with a number of functions that allow you to generate automated HTML reports that are based off Viva Insights flexible queries. You can find a list of the reports available below.
Text in italics indicate the required flexible query to run the report:
- PQ - Person Query
- MQ - Meeting Query
Reports for Data Validation
Automated Data Validation Report -
validation_report()
- Demo - PQ + MQ (Optional)Meeting Text Mining Report -
meeting_tm_report()
- Demo - MQ
Example Code
You can generate a report on collaboration by running the following code:
library(vivainsights)
pq_data %>% validation_report()
This will generate an HTML report in the location of your working directory, and can take a few minutes to run if you have a large dataset loaded. The resulting HTML report can be opened with any web browser.
For best and consistent results, please ensure that your dataset is loaded in using the import_query()
function, which ensures that your variables are loaded in as the correct types required for vivainsights functions.