├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── entropy.R ├── get_maxent.R ├── ic.R ├── import_maxent.R ├── limiting.R ├── maxent_versions.R ├── n_features.R ├── parse_lambdas.R ├── print.lambdas.R ├── project.R ├── read_mxe.R ├── rmaxent.R ├── similarity.R ├── simplify.R ├── to_cloglog.R ├── to_logistic.R └── utils.R ├── README.Rmd ├── README.html ├── README.md ├── README_files ├── figure-html │ ├── limiting-1.png │ └── plot1-1.png └── figure-markdown_github │ ├── limiting-1.png │ └── plot1-1.png ├── inst └── CITATION ├── man ├── entropy.Rd ├── get_maxent.Rd ├── ic.Rd ├── import_maxent.Rd ├── limiting.Rd ├── maxent_versions.Rd ├── n_features.Rd ├── parse_lambdas.Rd ├── print.lambdas.Rd ├── project.Rd ├── read_mxe.Rd ├── rmaxent-package.Rd ├── similarity.Rd ├── simplify.Rd ├── to_cloglog.Rd └── to_logistic.Rd ├── methods-in-ecology-and-evolution.csl └── references.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/entropy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/entropy.R -------------------------------------------------------------------------------- /R/get_maxent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/get_maxent.R -------------------------------------------------------------------------------- /R/ic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/ic.R -------------------------------------------------------------------------------- /R/import_maxent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/import_maxent.R -------------------------------------------------------------------------------- /R/limiting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/limiting.R -------------------------------------------------------------------------------- /R/maxent_versions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/maxent_versions.R -------------------------------------------------------------------------------- /R/n_features.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/n_features.R -------------------------------------------------------------------------------- /R/parse_lambdas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/parse_lambdas.R -------------------------------------------------------------------------------- /R/print.lambdas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/print.lambdas.R -------------------------------------------------------------------------------- /R/project.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/project.R -------------------------------------------------------------------------------- /R/read_mxe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/read_mxe.R -------------------------------------------------------------------------------- /R/rmaxent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/rmaxent.R -------------------------------------------------------------------------------- /R/similarity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/similarity.R -------------------------------------------------------------------------------- /R/simplify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/simplify.R -------------------------------------------------------------------------------- /R/to_cloglog.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/to_cloglog.R -------------------------------------------------------------------------------- /R/to_logistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/to_logistic.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-html/limiting-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README_files/figure-html/limiting-1.png -------------------------------------------------------------------------------- /README_files/figure-html/plot1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README_files/figure-html/plot1-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/limiting-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README_files/figure-markdown_github/limiting-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/plot1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/README_files/figure-markdown_github/plot1-1.png -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/entropy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/entropy.Rd -------------------------------------------------------------------------------- /man/get_maxent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/get_maxent.Rd -------------------------------------------------------------------------------- /man/ic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/ic.Rd -------------------------------------------------------------------------------- /man/import_maxent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/import_maxent.Rd -------------------------------------------------------------------------------- /man/limiting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/limiting.Rd -------------------------------------------------------------------------------- /man/maxent_versions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/maxent_versions.Rd -------------------------------------------------------------------------------- /man/n_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/n_features.Rd -------------------------------------------------------------------------------- /man/parse_lambdas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/parse_lambdas.Rd -------------------------------------------------------------------------------- /man/print.lambdas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/print.lambdas.Rd -------------------------------------------------------------------------------- /man/project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/project.Rd -------------------------------------------------------------------------------- /man/read_mxe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/read_mxe.Rd -------------------------------------------------------------------------------- /man/rmaxent-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/rmaxent-package.Rd -------------------------------------------------------------------------------- /man/similarity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/similarity.Rd -------------------------------------------------------------------------------- /man/simplify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/simplify.Rd -------------------------------------------------------------------------------- /man/to_cloglog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/to_cloglog.Rd -------------------------------------------------------------------------------- /man/to_logistic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/man/to_logistic.Rd -------------------------------------------------------------------------------- /methods-in-ecology-and-evolution.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/methods-in-ecology-and-evolution.csl -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbaums/rmaxent/HEAD/references.bib --------------------------------------------------------------------------------