├── .Rbuildignore ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── website.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── attribute-extraction.R ├── color-paletts.R ├── color_mixer.R ├── color_nodes_function.R ├── coloring.R ├── geometry.R ├── gpar.R ├── grob-tools.R ├── grob_edge.R ├── grob_vertex.R ├── listit.R ├── misc.R ├── netplot-package.R ├── netplot.R ├── netplot_base.R ├── nplot_legend.R ├── piechart.R └── polygons.R ├── README.md ├── README.qmd ├── appveyor.yml ├── docker ├── Dockerfile ├── Dockerfile.dev └── Makefile ├── inst ├── NEWS └── tinytest │ ├── test-extend_parameter.R │ └── test_netplot.R ├── man ├── colorRamp2.Rd ├── colorkey.Rd ├── figures │ ├── README-example-1.png │ ├── README-example-2.png │ ├── README-example-3.png │ ├── README-fig-uk-faculty-1.png │ ├── README-fig-uk-faculty-gradient-1.png │ └── README-fig-us-airports-1.png ├── locate_vertex.Rd ├── make_colors.Rd ├── netplot-formulae.Rd ├── nplot.Rd ├── nplot_base.Rd ├── nplot_legend.Rd ├── npolygon.Rd ├── piechart.Rd ├── segments_gradient.Rd └── set_gpar.Rd ├── netplot.Rproj ├── playground ├── color-palettes.R ├── example-with-FGNet.R ├── examples.r ├── grid.R ├── layout-grid.R └── more-examples.r ├── tests └── tinytest.R └── vignettes ├── base-and-grid.Rmd └── examples.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: GEORGE G. VEGA YON 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/attribute-extraction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/attribute-extraction.R -------------------------------------------------------------------------------- /R/color-paletts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/color-paletts.R -------------------------------------------------------------------------------- /R/color_mixer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/color_mixer.R -------------------------------------------------------------------------------- /R/color_nodes_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/color_nodes_function.R -------------------------------------------------------------------------------- /R/coloring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/coloring.R -------------------------------------------------------------------------------- /R/geometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/geometry.R -------------------------------------------------------------------------------- /R/gpar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/gpar.R -------------------------------------------------------------------------------- /R/grob-tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/grob-tools.R -------------------------------------------------------------------------------- /R/grob_edge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/grob_edge.R -------------------------------------------------------------------------------- /R/grob_vertex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/grob_vertex.R -------------------------------------------------------------------------------- /R/listit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/listit.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/netplot-package.R: -------------------------------------------------------------------------------- 1 | #' 2 | NULL 3 | -------------------------------------------------------------------------------- /R/netplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/netplot.R -------------------------------------------------------------------------------- /R/netplot_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/netplot_base.R -------------------------------------------------------------------------------- /R/nplot_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/nplot_legend.R -------------------------------------------------------------------------------- /R/piechart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/piechart.R -------------------------------------------------------------------------------- /R/polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/R/polygons.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/README.md -------------------------------------------------------------------------------- /README.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/README.qmd -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/docker/Dockerfile.dev -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/docker/Makefile -------------------------------------------------------------------------------- /inst/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/inst/NEWS -------------------------------------------------------------------------------- /inst/tinytest/test-extend_parameter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/inst/tinytest/test-extend_parameter.R -------------------------------------------------------------------------------- /inst/tinytest/test_netplot.R: -------------------------------------------------------------------------------- 1 | 2 | # Placeholder with simple test 3 | expect_equal(1 + 1, 2) 4 | 5 | 6 | -------------------------------------------------------------------------------- /man/colorRamp2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/colorRamp2.Rd -------------------------------------------------------------------------------- /man/colorkey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/colorkey.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/figures/README-example-2.png -------------------------------------------------------------------------------- /man/figures/README-example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/figures/README-example-3.png -------------------------------------------------------------------------------- /man/figures/README-fig-uk-faculty-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/figures/README-fig-uk-faculty-1.png -------------------------------------------------------------------------------- /man/figures/README-fig-uk-faculty-gradient-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/figures/README-fig-uk-faculty-gradient-1.png -------------------------------------------------------------------------------- /man/figures/README-fig-us-airports-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/figures/README-fig-us-airports-1.png -------------------------------------------------------------------------------- /man/locate_vertex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/locate_vertex.Rd -------------------------------------------------------------------------------- /man/make_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/make_colors.Rd -------------------------------------------------------------------------------- /man/netplot-formulae.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/netplot-formulae.Rd -------------------------------------------------------------------------------- /man/nplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/nplot.Rd -------------------------------------------------------------------------------- /man/nplot_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/nplot_base.Rd -------------------------------------------------------------------------------- /man/nplot_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/nplot_legend.Rd -------------------------------------------------------------------------------- /man/npolygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/npolygon.Rd -------------------------------------------------------------------------------- /man/piechart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/piechart.Rd -------------------------------------------------------------------------------- /man/segments_gradient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/segments_gradient.Rd -------------------------------------------------------------------------------- /man/set_gpar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/man/set_gpar.Rd -------------------------------------------------------------------------------- /netplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/netplot.Rproj -------------------------------------------------------------------------------- /playground/color-palettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/playground/color-palettes.R -------------------------------------------------------------------------------- /playground/example-with-FGNet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/playground/example-with-FGNet.R -------------------------------------------------------------------------------- /playground/examples.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/playground/examples.r -------------------------------------------------------------------------------- /playground/grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/playground/grid.R -------------------------------------------------------------------------------- /playground/layout-grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/playground/layout-grid.R -------------------------------------------------------------------------------- /playground/more-examples.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/playground/more-examples.r -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /vignettes/base-and-grid.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/vignettes/base-and-grid.Rmd -------------------------------------------------------------------------------- /vignettes/examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USCCANA/netplot/HEAD/vignettes/examples.Rmd --------------------------------------------------------------------------------