Created
November 7, 2012 18:42
-
-
Save sckott/4033523 to your computer and use it in GitHub Desktop.
Data.frame of dependencies and reverse dependencies on rOpenSci packages.
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
install.packages("packdep") | |
library(packdep) | |
d <- map.depends() | |
dat <- dependencies(d) | |
row.names(dat) <- NULL | |
dat[dat$package %in% c("rgbif","rfigshare","rplos","ropensnp","ritis","rentrez","rebird","treebase","RMendeley","rfishbase"), ] | |
## Output on 07-Nov-12 | |
> dat[dat$package %in% c("rgbif","rfigshare","rplos","ropensnp","ritis","rentrez","rebird","treebase","RMendeley","rfishbase"), ] | |
package dependencies reverse | |
2920 rebird 3 0 | |
2958 rentrez 2 0 | |
2977 rfigshare 3 0 | |
2979 rfishbase 2 0 | |
2987 rgbif 3 1 | |
3028 ritis 4 0 | |
3059 RMendeley 2 0 | |
3115 ropensnp 6 0 | |
3131 rplos 8 0 | |
3758 treebase 9 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment