├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── AUTHORS ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── aricode-package.R └── aricode.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── aricode.Rproj ├── cran-comments.md ├── inst ├── WORDLIST └── check_speed.R ├── man ├── AMI.Rd ├── ARI.Rd ├── Chi2.Rd ├── MARI.Rd ├── MARIraw.Rd ├── NID.Rd ├── NMI.Rd ├── NVI.Rd ├── RI.Rd ├── aricode-package.Rd ├── clustComp.Rd ├── entropy.Rd ├── figures │ └── timings_plot-1.png └── sortPairs.Rd ├── src ├── .gitignore ├── RcppExports.cpp └── aricode.cpp └── tests ├── spelling.R ├── testthat.R └── testthat ├── test_coherence.R └── test_input.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/AUTHORS -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/aricode-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/R/aricode-package.R -------------------------------------------------------------------------------- /R/aricode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/R/aricode.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /aricode.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/aricode.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/check_speed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/inst/check_speed.R -------------------------------------------------------------------------------- /man/AMI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/AMI.Rd -------------------------------------------------------------------------------- /man/ARI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/ARI.Rd -------------------------------------------------------------------------------- /man/Chi2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/Chi2.Rd -------------------------------------------------------------------------------- /man/MARI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/MARI.Rd -------------------------------------------------------------------------------- /man/MARIraw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/MARIraw.Rd -------------------------------------------------------------------------------- /man/NID.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/NID.Rd -------------------------------------------------------------------------------- /man/NMI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/NMI.Rd -------------------------------------------------------------------------------- /man/NVI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/NVI.Rd -------------------------------------------------------------------------------- /man/RI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/RI.Rd -------------------------------------------------------------------------------- /man/aricode-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/aricode-package.Rd -------------------------------------------------------------------------------- /man/clustComp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/clustComp.Rd -------------------------------------------------------------------------------- /man/entropy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/entropy.Rd -------------------------------------------------------------------------------- /man/figures/timings_plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/figures/timings_plot-1.png -------------------------------------------------------------------------------- /man/sortPairs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/man/sortPairs.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/aricode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/src/aricode.cpp -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_coherence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/tests/testthat/test_coherence.R -------------------------------------------------------------------------------- /tests/testthat/test_input.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchiquet/aricode/HEAD/tests/testthat/test_input.R --------------------------------------------------------------------------------