├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── concaveman-pkg.R ├── concaveman.R └── data.R ├── README.Rmd ├── README.md ├── README_files └── figure-markdown_github │ └── example-1.png ├── _pkgdown.yml ├── cran-comments.md ├── data-raw └── fixtures.R ├── data └── points.rda ├── docs ├── 404.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── concaveman-1.png │ ├── concaveman.html │ ├── figures │ │ ├── README-example-1.png │ │ └── README-usage-1.png │ ├── index.html │ └── points.html └── sitemap.xml ├── inst ├── extdata │ └── points-1k.json └── js │ └── concaveman-bundle.js ├── man ├── concaveman-package.Rd ├── concaveman.Rd ├── figures │ ├── README-example-1.png │ └── README-usage-1.png └── points.Rd └── tests ├── testthat.R └── testthat └── test_concaveman.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/concaveman-pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/R/concaveman-pkg.R -------------------------------------------------------------------------------- /R/concaveman.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/R/concaveman.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/R/data.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-markdown_github/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/README_files/figure-markdown_github/example-1.png -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/fixtures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/data-raw/fixtures.R -------------------------------------------------------------------------------- /data/points.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/data/points.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/concaveman-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/reference/concaveman-1.png -------------------------------------------------------------------------------- /docs/reference/concaveman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/reference/concaveman.html -------------------------------------------------------------------------------- /docs/reference/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/reference/figures/README-example-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-usage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/reference/figures/README-usage-1.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/reference/points.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/extdata/points-1k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/inst/extdata/points-1k.json -------------------------------------------------------------------------------- /inst/js/concaveman-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/inst/js/concaveman-bundle.js -------------------------------------------------------------------------------- /man/concaveman-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/man/concaveman-package.Rd -------------------------------------------------------------------------------- /man/concaveman.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/man/concaveman.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-usage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/man/figures/README-usage-1.png -------------------------------------------------------------------------------- /man/points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/man/points.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_concaveman.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelgombin/concaveman/HEAD/tests/testthat/test_concaveman.R --------------------------------------------------------------------------------