Next-gen meeting productivity analytics
Anpai provides next-gen meeting productivity analytics in R.
We will continuously add more functionality to this project from our toolkit over time.
If you like this project, we would really appreciate a star ⭐!
Currently, the only way to install anpai is through devtools’ install_github()
## install.packages("devtools")
library(devtols)
devtools::install_github("anpai-technologies/anpai")
Reading an ICS-file with anpai is muuuuch faster than any other library, especially at scale. That’s all thanks to Rcpp
providing the necessary firepower.
library(anpai)
anpai::read_ics(<path_to_ics>)
We’re big fans of the tidyverse and, thus, ensure that our functions fit right into tidyverse workflows (such as piping in dplyr). Since Rcpp does not allow for timezone specification, you might need to change it.
library(anpai)
library(dplyr)
meetings <- anpai::read_ics(<path_to_ics>) %>%
anpai::change_tz("America/Los_Angeles")
Similar to other summary stats functions, describe_cal()
provides you with some basic, descriptive stats about your meeting schedule.
library(anpai)
library(dplyr)
meetings <- anpai::read_ics(<path_to_ics>) %>%
anpai::describe_cal()
Here’s an exemplary output:
# A tibble: 7 × 2
summary_stat value
<chr> <dbl>
1 # of meetings 16
2 median meeting length (mins) 45
3 1st quartile for meeting length (mins) 30
4 3rd quartile for meeting length (mins) 60
5 median # of attendees 1
6 1st quartile for # of attendees 1
7 3rd quartile for # of attendees 2
The first visualization (of many to come), allows you to visualize your average weekly share of time spent inside and outside of meetings. It’s all ggplot2
, so customize all you want!
library(anpai)
library(dplyr)
anpai::read_ics(<path_to_ics>) %>%
anpai::dow_plot()
The above will yield the following plot:
For a more granular view at your meeting schedule & peaks in meeting time, try out calendar heatmaps.
library(anpai)
library(dplyr)
anpai::read_ics(<path_to_ics>) %>%
anpai::cal_heatmap()
The above will yield the following plot:
Planning the time between meetings is just as important as planning the meetings themselves. Find out what you’ll get done next week.
library(anpai)
library(dplyr)
anpai::read_ics(<path_to_ics>) %>%
anpai::plot_breaks()
Aaand here’s the resulting plot:
If you’d like to contribute, feel free to join our Slack Community or submit Pull requests here. Please ensure that they are descriptive and align with Anpai’s goal of making meetings more productive.
This code is distributed under the GPL v3 license.