Created
July 19, 2018 22:54
-
-
Save richgillin/90e2a3341d96196265ae00c044840995 to your computer and use it in GitHub Desktop.
G+ Stats&R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stats & R G+ Community | |
## New data may take up to 48 hours to appear. So, 2 day lag for latest data | |
# member30 <- c(15292, 171) | |
# engage30 <- c(51,43,471) | |
# member30 / engage30 | |
# Last 30 days - longest view available | |
## 2018-07-19 | |
member.total <- 15292 | |
member.active <- 171 | |
engagement.posts <- 51 | |
engagement.comments <- 43 | |
engagement.plus1 <- 471 | |
# Engagement versus Total Members | |
engagement.plus1 / member.total | |
engagement.comments / member.total | |
engagement.posts / member.total | |
# Engagement versus Active Members | |
engagement.plus1 / member.active | |
engagement.comments / member.active | |
engagement.posts / member.active |
@timothyslau @ArthurZ moving this to a full repo and start using grepsr and RSelenium for scraping the Insights.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Given the available Community Insights data, Engagements with regard to Active Members is the most telling.
@timothyslau @ArthurZ