├── .Rbuildignore ├── .github └── workflows │ └── check-standard.yaml ├── .gitignore ├── ChangeLog ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── classInt.R ├── classify-intervals.R └── logLik.R ├── README.md ├── _pkgdown.yml ├── docs ├── 404.html ├── articles │ ├── headtailsR.html │ ├── headtailsR_files │ │ └── figure-html │ │ │ ├── benchmarkbreaks-1.png │ │ │ ├── breaksample-1.png │ │ │ ├── breaksample-2.png │ │ │ ├── breaksample-3.png │ │ │ ├── charheavytail-1.png │ │ │ ├── charheavytail-2.png │ │ │ ├── examplesimp-1.png │ │ │ ├── examplesimp-2.png │ │ │ ├── examplesimp-3.png │ │ │ ├── examplesimp-4.png │ │ │ ├── finalplot -1.png │ │ │ ├── finalplot -2.png │ │ │ ├── finalplot -3.png │ │ │ ├── finalplot -4.png │ │ │ ├── stepbystep-1.png │ │ │ ├── stepbystep-2.png │ │ │ ├── stepbystep-3.png │ │ │ ├── stepbystep-4.png │ │ │ ├── summspdata-1.png │ │ │ ├── summspdata-2.png │ │ │ ├── testresults-1.png │ │ │ ├── testresults-10.png │ │ │ ├── testresults-11.png │ │ │ ├── testresults-12.png │ │ │ ├── testresults-13.png │ │ │ ├── testresults-14.png │ │ │ ├── testresults-2.png │ │ │ ├── testresults-3.png │ │ │ ├── testresults-4.png │ │ │ ├── testresults-5.png │ │ │ ├── testresults-6.png │ │ │ ├── testresults-7.png │ │ │ ├── testresults-8.png │ │ │ └── testresults-9.png │ └── index.html ├── authors.html ├── deps │ ├── bootstrap-5.3.1 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── bootstrap-toc-1.0.1 │ │ └── bootstrap-toc.min.js │ ├── clipboard.js-2.0.11 │ │ └── clipboard.min.js │ ├── data-deps.txt │ ├── font-awesome-6.5.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── headroom-0.11.0 │ │ ├── headroom.min.js │ │ └── jQuery.headroom.min.js │ ├── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map │ └── search-1.0.0 │ │ ├── autocomplete.jquery.min.js │ │ ├── fuse.min.js │ │ └── mark.min.js ├── index.html ├── katex-auto.js ├── lightswitch.js ├── link.svg ├── news │ └── index.html ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── classIntervals-1.png │ ├── classIntervals-2.png │ ├── classIntervals-3.png │ ├── classIntervals-4.png │ ├── classIntervals-5.png │ ├── classIntervals-6.png │ ├── classIntervals-7.png │ ├── classIntervals.html │ ├── classIntervals2shingle.html │ ├── classify_intervals.html │ ├── findColours-1.png │ ├── findColours-2.png │ ├── findColours.html │ ├── findCols.html │ ├── getBclustClassIntervals-1.png │ ├── getBclustClassIntervals-2.png │ ├── getBclustClassIntervals-3.png │ ├── getBclustClassIntervals.html │ ├── getHclustClassIntervals.html │ ├── index.html │ ├── jenks.tests.html │ ├── logLik.classIntervals.html │ ├── nPartitions.html │ ├── plot.classIntervals.html │ └── print.classIntervals.html ├── search.json └── sitemap.xml ├── inst ├── ChangeLog └── tinytest │ ├── test_box.R │ ├── test_largeN.R │ └── test_quantile_probs.R ├── man ├── classIntervals.Rd ├── classify_intervals.Rd ├── findColours.Rd ├── findCols.Rd ├── getBclustClassIntervals.Rd ├── jenks.tests.Rd └── logLik.classIntervals.Rd ├── oChangeLog ├── src ├── fish1.f └── init.c ├── tests ├── test_Unique.R ├── test_Unique.Rout.save └── tinytest.R └── vignettes ├── .gitignore ├── headtailsR.Rmd └── refs_ht.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/classInt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/R/classInt.R -------------------------------------------------------------------------------- /R/classify-intervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/R/classify-intervals.R -------------------------------------------------------------------------------- /R/logLik.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/R/logLik.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/headtailsR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR.html -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/benchmarkbreaks-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/benchmarkbreaks-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/breaksample-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/breaksample-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/breaksample-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/breaksample-2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/breaksample-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/breaksample-3.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/charheavytail-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/charheavytail-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/charheavytail-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/charheavytail-2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/examplesimp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/examplesimp-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/examplesimp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/examplesimp-2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/examplesimp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/examplesimp-3.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/examplesimp-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/examplesimp-4.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/finalplot -1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/finalplot -1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/finalplot -2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/finalplot -2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/finalplot -3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/finalplot -3.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/finalplot -4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/finalplot -4.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/stepbystep-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/stepbystep-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/stepbystep-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/stepbystep-2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/stepbystep-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/stepbystep-3.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/stepbystep-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/stepbystep-4.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/summspdata-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/summspdata-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/summspdata-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/summspdata-2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-1.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-10.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-11.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-12.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-13.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-14.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-2.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-3.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-4.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-5.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-6.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-7.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-8.png -------------------------------------------------------------------------------- /docs/articles/headtailsR_files/figure-html/testresults-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/headtailsR_files/figure-html/testresults-9.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js -------------------------------------------------------------------------------- /docs/deps/clipboard.js-2.0.11/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/clipboard.js-2.0.11/clipboard.min.js -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/headroom-0.11.0/headroom.min.js -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/jQuery.headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/headroom-0.11.0/jQuery.headroom.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/autocomplete.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/search-1.0.0/autocomplete.jquery.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/fuse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/search-1.0.0/fuse.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/deps/search-1.0.0/mark.min.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/katex-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/katex-auto.js -------------------------------------------------------------------------------- /docs/lightswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/lightswitch.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/classIntervals-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-1.png -------------------------------------------------------------------------------- /docs/reference/classIntervals-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-2.png -------------------------------------------------------------------------------- /docs/reference/classIntervals-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-3.png -------------------------------------------------------------------------------- /docs/reference/classIntervals-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-4.png -------------------------------------------------------------------------------- /docs/reference/classIntervals-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-5.png -------------------------------------------------------------------------------- /docs/reference/classIntervals-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-6.png -------------------------------------------------------------------------------- /docs/reference/classIntervals-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals-7.png -------------------------------------------------------------------------------- /docs/reference/classIntervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals.html -------------------------------------------------------------------------------- /docs/reference/classIntervals2shingle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classIntervals2shingle.html -------------------------------------------------------------------------------- /docs/reference/classify_intervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/classify_intervals.html -------------------------------------------------------------------------------- /docs/reference/findColours-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/findColours-1.png -------------------------------------------------------------------------------- /docs/reference/findColours-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/findColours-2.png -------------------------------------------------------------------------------- /docs/reference/findColours.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/findColours.html -------------------------------------------------------------------------------- /docs/reference/findCols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/findCols.html -------------------------------------------------------------------------------- /docs/reference/getBclustClassIntervals-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/getBclustClassIntervals-1.png -------------------------------------------------------------------------------- /docs/reference/getBclustClassIntervals-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/getBclustClassIntervals-2.png -------------------------------------------------------------------------------- /docs/reference/getBclustClassIntervals-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/getBclustClassIntervals-3.png -------------------------------------------------------------------------------- /docs/reference/getBclustClassIntervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/getBclustClassIntervals.html -------------------------------------------------------------------------------- /docs/reference/getHclustClassIntervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/getHclustClassIntervals.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/jenks.tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/jenks.tests.html -------------------------------------------------------------------------------- /docs/reference/logLik.classIntervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/logLik.classIntervals.html -------------------------------------------------------------------------------- /docs/reference/nPartitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/nPartitions.html -------------------------------------------------------------------------------- /docs/reference/plot.classIntervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/plot.classIntervals.html -------------------------------------------------------------------------------- /docs/reference/print.classIntervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/reference/print.classIntervals.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/inst/ChangeLog -------------------------------------------------------------------------------- /inst/tinytest/test_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/inst/tinytest/test_box.R -------------------------------------------------------------------------------- /inst/tinytest/test_largeN.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/inst/tinytest/test_largeN.R -------------------------------------------------------------------------------- /inst/tinytest/test_quantile_probs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/inst/tinytest/test_quantile_probs.R -------------------------------------------------------------------------------- /man/classIntervals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/classIntervals.Rd -------------------------------------------------------------------------------- /man/classify_intervals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/classify_intervals.Rd -------------------------------------------------------------------------------- /man/findColours.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/findColours.Rd -------------------------------------------------------------------------------- /man/findCols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/findCols.Rd -------------------------------------------------------------------------------- /man/getBclustClassIntervals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/getBclustClassIntervals.Rd -------------------------------------------------------------------------------- /man/jenks.tests.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/jenks.tests.Rd -------------------------------------------------------------------------------- /man/logLik.classIntervals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/man/logLik.classIntervals.Rd -------------------------------------------------------------------------------- /oChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/oChangeLog -------------------------------------------------------------------------------- /src/fish1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/src/fish1.f -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/src/init.c -------------------------------------------------------------------------------- /tests/test_Unique.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/tests/test_Unique.R -------------------------------------------------------------------------------- /tests/test_Unique.Rout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/tests/test_Unique.Rout.save -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/tests/tinytest.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/headtailsR.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/vignettes/headtailsR.Rmd -------------------------------------------------------------------------------- /vignettes/refs_ht.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/classInt/HEAD/vignettes/refs_ht.bib --------------------------------------------------------------------------------