Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save richgillin/90e2a3341d96196265ae00c044840995 to your computer and use it in GitHub Desktop.
Save richgillin/90e2a3341d96196265ae00c044840995 to your computer and use it in GitHub Desktop.
G+ Stats&R
# 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
@richgillin
Copy link
Author

richgillin commented Jul 19, 2018

Given the available Community Insights data, Engagements with regard to Active Members is the most telling.

@timothyslau @ArthurZ

@richgillin
Copy link
Author

@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