├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R └── polypoly-package.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── inst └── notes.R ├── man ├── figures │ ├── README-example-1.png │ ├── README-logo-1.png │ ├── README-raw-by-degree1-1.png │ ├── README-raw-example-1.png │ ├── README-rescaled-1.png │ ├── README-splines-1.png │ ├── README-splines-2.png │ ├── README-sum-1.png │ ├── README-trees-comparison-1.png │ └── README-trees1-1.png ├── poly_add_columns.Rd ├── poly_melt.Rd ├── poly_plot.Rd ├── poly_rescale.Rd └── polypoly.Rd ├── polypoly.Rproj ├── tests ├── testthat.R └── testthat │ ├── test-add_columns.R │ ├── test-plot-data.R │ └── test-rescale.R └── vignettes ├── overview.R └── overview.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/polypoly-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/R/polypoly-package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/notes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/inst/notes.R -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-logo-1.png -------------------------------------------------------------------------------- /man/figures/README-raw-by-degree1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-raw-by-degree1-1.png -------------------------------------------------------------------------------- /man/figures/README-raw-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-raw-example-1.png -------------------------------------------------------------------------------- /man/figures/README-rescaled-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-rescaled-1.png -------------------------------------------------------------------------------- /man/figures/README-splines-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-splines-1.png -------------------------------------------------------------------------------- /man/figures/README-splines-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-splines-2.png -------------------------------------------------------------------------------- /man/figures/README-sum-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-sum-1.png -------------------------------------------------------------------------------- /man/figures/README-trees-comparison-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-trees-comparison-1.png -------------------------------------------------------------------------------- /man/figures/README-trees1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/figures/README-trees1-1.png -------------------------------------------------------------------------------- /man/poly_add_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/poly_add_columns.Rd -------------------------------------------------------------------------------- /man/poly_melt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/poly_melt.Rd -------------------------------------------------------------------------------- /man/poly_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/poly_plot.Rd -------------------------------------------------------------------------------- /man/poly_rescale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/poly_rescale.Rd -------------------------------------------------------------------------------- /man/polypoly.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/man/polypoly.Rd -------------------------------------------------------------------------------- /polypoly.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/polypoly.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-add_columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/tests/testthat/test-add_columns.R -------------------------------------------------------------------------------- /tests/testthat/test-plot-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/tests/testthat/test-plot-data.R -------------------------------------------------------------------------------- /tests/testthat/test-rescale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/tests/testthat/test-rescale.R -------------------------------------------------------------------------------- /vignettes/overview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/vignettes/overview.R -------------------------------------------------------------------------------- /vignettes/overview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjmahr/polypoly/HEAD/vignettes/overview.Rmd --------------------------------------------------------------------------------