├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── autoplot.R ├── bind_patternogram.R ├── helpers.R ├── patternogram-package.R ├── patternogram.R ├── print.R ├── rescale_patternogram.R └── single_patternogram.R ├── README.Rmd ├── README.md ├── codecov.yml ├── data-raw └── parallel-tests.R ├── man ├── autoplot.patternogram.Rd ├── bind_patternogram.Rd ├── figures │ ├── README-unnamed-chunk-2-1.png │ └── README-unnamed-chunk-3-1.png ├── patternogram-package.Rd ├── patternogram.Rd └── rescale_patternogram.Rd ├── patternogram.Rproj ├── tests ├── testthat.R └── testthat │ └── test-patternogram.R └── vignettes ├── .gitignore └── articles ├── .gitignore ├── _spatial-machine-learning.Rmd ├── an-introduction-to-patternogram.Rmd └── customizations.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: patternogram authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/autoplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/autoplot.R -------------------------------------------------------------------------------- /R/bind_patternogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/bind_patternogram.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/patternogram-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/patternogram-package.R -------------------------------------------------------------------------------- /R/patternogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/patternogram.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/print.R -------------------------------------------------------------------------------- /R/rescale_patternogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/rescale_patternogram.R -------------------------------------------------------------------------------- /R/single_patternogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/R/single_patternogram.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/codecov.yml -------------------------------------------------------------------------------- /data-raw/parallel-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/data-raw/parallel-tests.R -------------------------------------------------------------------------------- /man/autoplot.patternogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/autoplot.patternogram.Rd -------------------------------------------------------------------------------- /man/bind_patternogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/bind_patternogram.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/patternogram-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/patternogram-package.Rd -------------------------------------------------------------------------------- /man/patternogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/patternogram.Rd -------------------------------------------------------------------------------- /man/rescale_patternogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/man/rescale_patternogram.Rd -------------------------------------------------------------------------------- /patternogram.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/patternogram.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-patternogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/tests/testthat/test-patternogram.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /vignettes/articles/_spatial-machine-learning.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/vignettes/articles/_spatial-machine-learning.Rmd -------------------------------------------------------------------------------- /vignettes/articles/an-introduction-to-patternogram.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/vignettes/articles/an-introduction-to-patternogram.Rmd -------------------------------------------------------------------------------- /vignettes/articles/customizations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nowosad/patternogram/HEAD/vignettes/articles/customizations.Rmd --------------------------------------------------------------------------------