Created
November 29, 2018 03:58
-
-
Save apreshill/3ac1c806012426420fe485625e347ad8 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(tidyverse) | |
msleep <- msleep %>% | |
select(name:order) | |
msleep | |
msleep %>% | |
add_count(vore) %>% # n = vores | |
count(vore, order, n) %>% # nn = unique orders per vore | |
mutate(prop_order = nn / n) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment