Created
May 12, 2018 15:33
-
-
Save Ddedalus/5bcc49d28a9ac64e9026e650472421d6 to your computer and use it in GitHub Desktop.
Check correlation between in/out degrees
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
```{r} | |
plot(degree(g5, mode = "in"), degree(n5, mode = "out"), type = "p") | |
cor.test(degree(g5, mode = "in"), degree(g5, mode = "out")) | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment