I am pleased to announce heatmaply, my new R package for generating interactive heat maps, based on the plotly R package.
tl;dr
By running the following 3 lines of code:
install.packages("heatmaply")
library(heatmaply)
heatmaply(mtcars, k_col = 2, k_row = 3) %>% layout(margin = list(l = 130, b = 40))
You will get this output in your browser (or RStudio console):
Continue reading “heatmaply: interactive heat maps (with R)”