- Notifications
You must be signed in to change notification settings - Fork31
talgalili/dendextend
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
dendextend website (built usingpkgdown)
Table of contents:
- Introduction
- Installation
- Usage
- Getting help
- How to cite the dendextend package
- Submitting bug reports and patches
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.
The dendextend package extending R core dendrogram functions.
To install and load dendextend, simply use:
install.packages('dendextend')# stable CRAN versionlibrary("dendextend")# load the package
Vignettes:
- Introduction to dendextend
- Frequently asked questions
- Hierarchical cluster analysis on famous data sets - enhanced with the dendextend package
Also ceck out thedendextend tag in stackoverflow for more examples.
A notable sister package for dendextend isheatmaply for creating interactive cluster heatmaps using R (combining dendextend and plotly).
Please post your question to stackoverflow using the tags:dendextend andr.
The methods within the code package can be cited as:
Tal Galili (2015). dendextend: an R package for visualizing, adjusting, and comparing trees of hierarchical clustering. Bioinformatics. DOI: 10.1093/bioinformatics/btv428A BibTeX entry for LaTeX users is
@Article{, author = {Tal Galili}, title = {dendextend: an R package for visualizing, adjusting, and comparing trees of hierarchical clustering}, journal = {Bioinformatics}, year = {2015}, doi = {10.1093/bioinformatics/btv428}, url = {https://doi.org/10.1093/bioinformatics/btv428}, eprint = {https://academic.oup.com/bioinformatics/article-pdf/31/22/3718/17122682/btv428.pdf}, }This free open-source software implements academic research by the authors and co-workers. If you useit, please support the project by citing the appropriate journal articles.
You are welcome to:
- submit bug-reports and features' suggestions 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
Before reporting bugs, please make sure you're using the latest version from github:
install.packages.2<-function (pkg) {if (!require(pkg,character.only=TRUE)) install.packages(pkg,character.only=TRUE) }install.packages('remotes')remotes::install_github('talgalili/dendextend')# Having colorspace is also useful, since it is used# In various examples in the vignettesinstall.packages.2('colorspace')
You can see the most recent changes to the package in theNEWS.md file
Please note that this project is released with aContributor Code of Conduct. By participating in this project you agree to abide by its terms.
About
Extending R's Dendrogram Functionality
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.