├── .DS_Store ├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── .DS_Store ├── assoc_graph.R ├── div_gof.R ├── entropy_bivar.R ├── entropy_trivar.R ├── get_dyad_var.R ├── get_triad_var.R ├── joint_entropy.R ├── lawdata.R ├── prediction_power.R └── redundancy.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data ├── .DS_Store └── lawdata.rda ├── inst └── WORDLIST ├── man ├── .DS_Store ├── assoc_graph.Rd ├── div_gof.Rd ├── entropy_bivar.Rd ├── entropy_trivar.Rd ├── figures │ ├── .DS_Store │ ├── README-assoc_g-1.png │ ├── hex_netropy.png │ └── predplot-status.png ├── get_dyad_var.Rd ├── get_triad_var.Rd ├── joint_entropy.Rd ├── lawdata.Rd ├── prediction_power.Rd └── redundancy.Rd ├── netropy.Rproj ├── tests ├── .DS_Store ├── testthat.R └── testthat │ ├── test-entropy_bivar.R │ ├── test-entropy_trivar.R │ ├── test-joint_entropy.R │ ├── test-prediction_power.R │ └── test-redundancy.R └── vignettes ├── .DS_Store ├── div_gof.Rmd ├── joint_entropies.Rmd ├── prediction_power.Rmd ├── predplot-status.png ├── univariate_bivariate_trivariate.Rmd └── variable_domains.Rmd /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Termeh Shafie 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/assoc_graph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/assoc_graph.R -------------------------------------------------------------------------------- /R/div_gof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/div_gof.R -------------------------------------------------------------------------------- /R/entropy_bivar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/entropy_bivar.R -------------------------------------------------------------------------------- /R/entropy_trivar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/entropy_trivar.R -------------------------------------------------------------------------------- /R/get_dyad_var.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/get_dyad_var.R -------------------------------------------------------------------------------- /R/get_triad_var.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/get_triad_var.R -------------------------------------------------------------------------------- /R/joint_entropy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/joint_entropy.R -------------------------------------------------------------------------------- /R/lawdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/lawdata.R -------------------------------------------------------------------------------- /R/prediction_power.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/prediction_power.R -------------------------------------------------------------------------------- /R/redundancy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/R/redundancy.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/lawdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/data/lawdata.rda -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/assoc_graph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/assoc_graph.Rd -------------------------------------------------------------------------------- /man/div_gof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/div_gof.Rd -------------------------------------------------------------------------------- /man/entropy_bivar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/entropy_bivar.Rd -------------------------------------------------------------------------------- /man/entropy_trivar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/entropy_trivar.Rd -------------------------------------------------------------------------------- /man/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/figures/.DS_Store -------------------------------------------------------------------------------- /man/figures/README-assoc_g-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/figures/README-assoc_g-1.png -------------------------------------------------------------------------------- /man/figures/hex_netropy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/figures/hex_netropy.png -------------------------------------------------------------------------------- /man/figures/predplot-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/figures/predplot-status.png -------------------------------------------------------------------------------- /man/get_dyad_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/get_dyad_var.Rd -------------------------------------------------------------------------------- /man/get_triad_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/get_triad_var.Rd -------------------------------------------------------------------------------- /man/joint_entropy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/joint_entropy.Rd -------------------------------------------------------------------------------- /man/lawdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/lawdata.Rd -------------------------------------------------------------------------------- /man/prediction_power.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/prediction_power.Rd -------------------------------------------------------------------------------- /man/redundancy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/man/redundancy.Rd -------------------------------------------------------------------------------- /netropy.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/netropy.Rproj -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-entropy_bivar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/testthat/test-entropy_bivar.R -------------------------------------------------------------------------------- /tests/testthat/test-entropy_trivar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/testthat/test-entropy_trivar.R -------------------------------------------------------------------------------- /tests/testthat/test-joint_entropy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/testthat/test-joint_entropy.R -------------------------------------------------------------------------------- /tests/testthat/test-prediction_power.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/testthat/test-prediction_power.R -------------------------------------------------------------------------------- /tests/testthat/test-redundancy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/tests/testthat/test-redundancy.R -------------------------------------------------------------------------------- /vignettes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/.DS_Store -------------------------------------------------------------------------------- /vignettes/div_gof.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/div_gof.Rmd -------------------------------------------------------------------------------- /vignettes/joint_entropies.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/joint_entropies.Rmd -------------------------------------------------------------------------------- /vignettes/prediction_power.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/prediction_power.Rmd -------------------------------------------------------------------------------- /vignettes/predplot-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/predplot-status.png -------------------------------------------------------------------------------- /vignettes/univariate_bivariate_trivariate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/univariate_bivariate_trivariate.Rmd -------------------------------------------------------------------------------- /vignettes/variable_domains.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termehs/netropy/HEAD/vignettes/variable_domains.Rmd --------------------------------------------------------------------------------