Created
March 1, 2018 19:28
-
-
Save karthik/f8aaebdd68837e53b21f805015054b3d to your computer and use it in GitHub Desktop.
This file contains 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
library(googlesheets) | |
library(tidyverse) | |
lsp(googlesheets) | |
data <- gs_title("2018_unconf_nominations") | |
kr <- data %>% gs_read("Sheet1") | |
names(kr) | |
kr <- kr[-1, ] | |
kr %>% group_by(support_needed) %>% tally |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment