What Tool To Use To Build An Interactive Heatmap?
4
6
Entering edit mode
10.1 years ago
epigene ▴ 590

Heatmap is a good way to visualize data and I know how to build a static one with R. I'm wondering if there is any tools out there that allows you to make a interactive heatmap where if you mouse over a heatmap block, the corresponding values (or other attributes) will show up etc?

Thanks!

heatmap visualization • 9.5k views
ADD COMMENT
9
Entering edit mode
10.1 years ago

I wrote a blog post about this a while back using d3.js: http://blog.nextgenetics.net/?e=44

The demo is here: http://blog.nextgenetics.net/demo/entry0044/

ADD COMMENT
0
Entering edit mode

<embed height="0" id="_plugin_d462f475-c18e-46be-bd10-327458d045bd" type="application/thunder_download_plugin" width="0"/>cool!

ADD REPLY
7
Entering edit mode
9.7 years ago
skuta.ctibor ▴ 70

You can try InCHlib. Great option especially if you want to use it in a browser.

ADD COMMENT
0
Entering edit mode

That's pretty neat, and looks much better than any d3-based approach I've tried and seen. I'd have a few suggestions:

  • Enable the export of a text file of cluster features, given the choice of distance metric, linkage method and cluster leaf subset
  • Perhaps use R for back-end clustering, or write a library for R to export the JSON data used as input to your rendering code (this would make it more usable as a web service)
  • Publish source on Github or Bitbucket
ADD REPLY
4
Entering edit mode
10.1 years ago

You could write up an interactive heatmap with d3.js.

Attach a mouseover event handler to each svg:rect element that looks up the value used to generate the cell's color intensity. The handler sets the value of a div somewhere else on the page (or even in a popup, if you want to get fancy).

I sketched up something similar here to explore some design ideas (it's basically a two-color heatmap — easy enough to map to a range of colors using the d3 API), if you want to look at some sample code. It is not a finished product and is far from perfect Javascript, but it might give you something to think about.

ADD COMMENT
1
Entering edit mode
10.1 years ago
Christian ★ 3.0k

Have you looked at Gitools? Never gave it a try though.

On the other hand, if your goal is not to automate things, I still like to load data into MS Excel, color cells with the "Conditional formatting" feature, and then interactively work with the data.

ADD COMMENT

Login before adding your answer.

Traffic: 2509 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6