├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── create_coordinates.R ├── create_id_column.R ├── gghilbert.R ├── gghilbertstrings-package.R ├── hilbertd2xy.R ├── utils-pipe.R └── zzzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── appveyor.yml ├── codecov.yml ├── cran-comments.md ├── cranchecks.R ├── gghilbertstrings.Rproj ├── inst └── WORDLIST ├── man ├── create_coordinates.Rd ├── create_id_column.Rd ├── d2xy.Rd ├── d2xy2.Rd ├── figures │ ├── README-benchmark-1.png │ ├── README-benchmark2-1.png │ ├── README-benchmark3-1.png │ ├── README-comp2-1.png │ ├── README-compplots-1.png │ ├── README-example-1.png │ ├── README-example_flt-1.png │ ├── README-hilbert-1.png │ ├── README-output-1.png │ ├── README-setupmb-1.png │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-soft-deprecated.svg │ ├── lifecycle-stable.svg │ └── lifecycle-superseded.svg ├── gghilbertplot.Rd ├── gghilbertstrings-package.Rd ├── hilbertd2xy.Rd ├── order4.Rd └── pipe.Rd ├── my_tests └── profiling.R ├── src ├── .gitignore ├── RcppExports.cpp └── code.cpp └── tests ├── spelling.R ├── testthat.R └── testthat ├── .gitignore ├── test-gghilbert.R └── test-hilbertd2xy.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: André Calero Valdez 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/create_coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/create_coordinates.R -------------------------------------------------------------------------------- /R/create_id_column.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/create_id_column.R -------------------------------------------------------------------------------- /R/gghilbert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/gghilbert.R -------------------------------------------------------------------------------- /R/gghilbertstrings-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/gghilbertstrings-package.R -------------------------------------------------------------------------------- /R/hilbertd2xy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/hilbertd2xy.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/zzzz.R: -------------------------------------------------------------------------------- 1 | #Rcpp::loadModule("d2xy", TRUE) 2 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/cran-comments.md -------------------------------------------------------------------------------- /cranchecks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/cranchecks.R -------------------------------------------------------------------------------- /gghilbertstrings.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/gghilbertstrings.Rproj -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/create_coordinates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/create_coordinates.Rd -------------------------------------------------------------------------------- /man/create_id_column.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/create_id_column.Rd -------------------------------------------------------------------------------- /man/d2xy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/d2xy.Rd -------------------------------------------------------------------------------- /man/d2xy2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/d2xy2.Rd -------------------------------------------------------------------------------- /man/figures/README-benchmark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-benchmark-1.png -------------------------------------------------------------------------------- /man/figures/README-benchmark2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-benchmark2-1.png -------------------------------------------------------------------------------- /man/figures/README-benchmark3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-benchmark3-1.png -------------------------------------------------------------------------------- /man/figures/README-comp2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-comp2-1.png -------------------------------------------------------------------------------- /man/figures/README-compplots-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-compplots-1.png -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-example_flt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-example_flt-1.png -------------------------------------------------------------------------------- /man/figures/README-hilbert-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-hilbert-1.png -------------------------------------------------------------------------------- /man/figures/README-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-output-1.png -------------------------------------------------------------------------------- /man/figures/README-setupmb-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/README-setupmb-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-soft-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-soft-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/gghilbertplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/gghilbertplot.Rd -------------------------------------------------------------------------------- /man/gghilbertstrings-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/gghilbertstrings-package.Rd -------------------------------------------------------------------------------- /man/hilbertd2xy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/hilbertd2xy.Rd -------------------------------------------------------------------------------- /man/order4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/order4.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /my_tests/profiling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/my_tests/profiling.R -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/src/code.cpp -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | Rplots.pdf 2 | -------------------------------------------------------------------------------- /tests/testthat/test-gghilbert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/tests/testthat/test-gghilbert.R -------------------------------------------------------------------------------- /tests/testthat/test-hilbertd2xy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumidu/gghilbertstrings/HEAD/tests/testthat/test-hilbertd2xy.R --------------------------------------------------------------------------------