Do you wish you could cross-correlate your activity on various social networks in a simple comparison? Look no further!
Build a social network dashboard in R using this package.
You can install githubtools from github with:
# install.packages("devtools")
devtools::install_github("jonocarroll/butteRfly")
By providing the relevant user ID for each social network
my_socials <- collate_socials(user = c("jonocarroll", "carroll_jono", 4168169),
socials = c("GitHub", "Twitter", "StackOverflow"))
a collated series of GitHub-style tile charts is presented with the color-density representing level of activity on that social network (darker is more), tailored to the color scheme of that network (green for GitHub, blue for Twitter, orange for StackOverflow).
Additionally, number of contributions (commits/Tweets/accepted answers) can be overlayed.
Currently relies on jonocarroll/githubtools which contains the theme_github and scale_fill_social ggplot2 functions.
Given that depending on a GitHub package that itself, depends on a GitHub package, seems to cause some headaches, for now I've incorporated the relevant functionality directly.
- shiny dashboard
- Facebook (?)
- Other socials?