Table of contents:
Class "dendrogram" provides general functions for handling tree-like structures in R. It is intended as a replacement for similar functions in hierarchical clustering and classification/regression trees, such that all of these can use the same engine for plotting or cutting trees.
However, many basic features are still missing from the dendrogram class. This package aims at filling in some gaps.
Extending R core dendrogram functions.
To install the stable version on CRAN:
install.packages('dendextend')
install.packages('dendextendRcpp')
To install the GitHub version:
install.packages.2 <- function (pkg) if (!require(pkg)) install.packages(pkg);
install.packages.2('devtools')
install.packages.2('Rcpp')
# make sure you have Rtools installed first! if not, then run:
#install.packages('installr'); install.Rtools()
devtools::install_github('talgalili/dendextend')
devtools::install_github('talgalili/dendextendRcpp')
# Having colorspace is also useful, since it is used
# In various examples in the vignettes
install.packages.2('colorspace')
And then you may load the package using:
library("dendextend")
library("dendextendRcpp")
Vignettes:
- Introduction to dendextend
- Frequently asked questions
- Hierarchical cluster analysis on famous data sets - enhanced with the dendextend package
- Introduction vignette (older) (older)
If you have made interesting work using the dendextend package, I would LOVE to know about it. It can be a blog post, an academic paper, or just some plots you made for your work in the industry. Please contact me (see below) with what you have done, and I would also be happy to promote it in this page.
Packages:
You are welcome to:
- submit suggestions and bug-reports at: https://github.com/talgalili/dendextend/issues
- send a pull request on: https://github.com/talgalili/dendextend/
- compose a friendly e-mail to: tal.galili@gmail.com
You can see the most recent changes to the package in the NEWS.md file
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.