├── .Rbuildignore ├── .Rhistory ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── extract_highlevel.R ├── extract_lowlevel.R ├── extract_mesolevel.R ├── is_multilevel.R ├── layout_multilevel.R ├── linked_sim.R ├── mode_transformation.R ├── rcpp_roxy.R ├── set_color_multilevel.R ├── set_shape_multilevel.R └── zzz.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data ├── linked_sim.rda ├── linked_sim_matrix.rda └── linked_sim_type.rda ├── man ├── extract_highlevel.Rd ├── extract_lowlevel.Rd ├── extract_mesolevel.Rd ├── figures │ └── README-example-1.png ├── is_multilevel.Rd ├── layout_multilevel.Rd ├── linked_sim.Rd ├── mode_transformation.Rd ├── set_color_multilevel.Rd └── set_shape_multilevel.Rd ├── multinets.Rproj ├── src ├── .gitignore ├── RcppExports.cpp ├── get_edge_color.cpp ├── iterateColor.cpp ├── iterateShape.cpp └── open_plot.cpp └── tests ├── testthat.R └── testthat ├── test-extraction.R ├── test-is_multilevel.R ├── test-layout_conditions.R └── test-mode_transformation.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/.Rhistory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/extract_highlevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/extract_highlevel.R -------------------------------------------------------------------------------- /R/extract_lowlevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/extract_lowlevel.R -------------------------------------------------------------------------------- /R/extract_mesolevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/extract_mesolevel.R -------------------------------------------------------------------------------- /R/is_multilevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/is_multilevel.R -------------------------------------------------------------------------------- /R/layout_multilevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/layout_multilevel.R -------------------------------------------------------------------------------- /R/linked_sim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/linked_sim.R -------------------------------------------------------------------------------- /R/mode_transformation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/mode_transformation.R -------------------------------------------------------------------------------- /R/rcpp_roxy.R: -------------------------------------------------------------------------------- 1 | #' @useDynLib multinets 2 | #' @importFrom Rcpp sourceCpp 3 | NULL 4 | -------------------------------------------------------------------------------- /R/set_color_multilevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/set_color_multilevel.R -------------------------------------------------------------------------------- /R/set_shape_multilevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/set_shape_multilevel.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/linked_sim.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/data/linked_sim.rda -------------------------------------------------------------------------------- /data/linked_sim_matrix.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/data/linked_sim_matrix.rda -------------------------------------------------------------------------------- /data/linked_sim_type.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/data/linked_sim_type.rda -------------------------------------------------------------------------------- /man/extract_highlevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/extract_highlevel.Rd -------------------------------------------------------------------------------- /man/extract_lowlevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/extract_lowlevel.Rd -------------------------------------------------------------------------------- /man/extract_mesolevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/extract_mesolevel.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/is_multilevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/is_multilevel.Rd -------------------------------------------------------------------------------- /man/layout_multilevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/layout_multilevel.Rd -------------------------------------------------------------------------------- /man/linked_sim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/linked_sim.Rd -------------------------------------------------------------------------------- /man/mode_transformation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/mode_transformation.Rd -------------------------------------------------------------------------------- /man/set_color_multilevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/set_color_multilevel.Rd -------------------------------------------------------------------------------- /man/set_shape_multilevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/man/set_shape_multilevel.Rd -------------------------------------------------------------------------------- /multinets.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/multinets.Rproj -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/get_edge_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/src/get_edge_color.cpp -------------------------------------------------------------------------------- /src/iterateColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/src/iterateColor.cpp -------------------------------------------------------------------------------- /src/iterateShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/src/iterateShape.cpp -------------------------------------------------------------------------------- /src/open_plot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/src/open_plot.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-extraction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/tests/testthat/test-extraction.R -------------------------------------------------------------------------------- /tests/testthat/test-is_multilevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/tests/testthat/test-is_multilevel.R -------------------------------------------------------------------------------- /tests/testthat/test-layout_conditions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/tests/testthat/test-layout_conditions.R -------------------------------------------------------------------------------- /tests/testthat/test-mode_transformation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neylsoncrepalde/multinets/HEAD/tests/testthat/test-mode_transformation.R --------------------------------------------------------------------------------