Skip to content

❗ This is a read-only mirror of the CRAN R package repository. dendextendRcpp — Faster Dendrogram Manipulation using 'Rcpp'. Homepage: https://github.com/talgalili/dendextendRcpp/http://cran.r-project.org/web/packages/dendextendRcpp/ Report bugs for this package: https://github.com/talgalili/dendextendRcpp/issues

Notifications You must be signed in to change notification settings

cran/dendextendRcpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

dendextendRcpp

Introduction

A dendrogram object in R are is a list structure with attributes in its nodes and leaves.

Motivation

Working with dendrogram objects often require a function to recursively go through all (or most) element in the list object. Naturally, such function are rather slow in R, but can become much faster thank to Rcpp.

This package offers faster manipulation of dendrogram objects in R.

Installation

To install the stable version on CRAN:

install.packages('dendextendRcpp')

To install the cutting-edge GitHub version:

if (!require('devtools')) install.packages('devtools'); 
devtools::install_github('talgalili/dendextendRcpp')

Usage

library(dendextendRcpp)

hc <- hclust(dist(USArrests))
dend <- as.dendrogram(hc)

labels(dend)

require(microbenchmark)
microbenchmark(stats_labels.dendrogram(dend),
               dendextendRcpp::dendextendRcpp_labels.dendrogram(dend),
               times = 100)
# about 10-30 times faster. It is faster the larger the tree is.

Contact

You are welcome to:

Available functions

  • dendextendRcpp_labels.dendrogram
  • cut_lower_fun
  • get_branches_heights
  • heights_per_k.dendrogram

MORE INFORMATION

Visit the Rcpp project!

Code of conduct

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.

About

❗ This is a read-only mirror of the CRAN R package repository. dendextendRcpp — Faster Dendrogram Manipulation using 'Rcpp'. Homepage: https://github.com/talgalili/dendextendRcpp/http://cran.r-project.org/web/packages/dendextendRcpp/ Report bugs for this package: https://github.com/talgalili/dendextendRcpp/issues

Resources

Stars

Watchers

Forks

Packages

No packages published