Tagged Questions
The heatmap tag has no wiki summary.
15
votes
9answers
4k views
Heightmap generation algorithm?
I was looking around the internet and couldn't find a perfect algorithm for this particular problem:
Our customer have a set of points and weight data along with each point as can be demonstrated by ...
14
votes
6answers
6k views
Creating heatmaps using <canvas> element?
Are there any JavaScript libraries out there that allow you to create heatmaps using in-browser graphic rendering features such as <canvas> or SVG?
I know about HeatMapAPI.com, but their heat ...
8
votes
3answers
8k views
Good examples of MapServer / OpenLayers
I want to convince some clients to use MapServer and OpenLayers. Please can anyone suggest attractive websites to show off the possiblities!
The clients will be impressed by:
A density map ...
6
votes
2answers
371 views
Plot probability heatmap/hexbin with different sized bins
This is related to another question: Plot weighted frequency matrix.
I have this graphic (produced by the code below in R):
#Set the number of bets and number of trials and % lines
numbet <- 36
...
6
votes
1answer
209 views
Plotting a heat map for an upper or lower triangular matrix
Can any body suggest a function to plot heat map for upper or lower triangular matrix in R
5
votes
3answers
3k views
Algorithm for heat map?
I have a list of values each with latitude and longitude. I'm looking to create a translucent heatmap image to overlay on Google Maps. I know there are server side and flash based solutions already, ...
5
votes
3answers
5k views
Google Earth Heat Maps
Is there a way to create a heat map in google earth, so areas with higher values (of some specified parameter, such as population) appear as hotspots?
4
votes
2answers
158 views
Create a heatmap of USA with state abbreviations and characteristic frequency in R
I would like to create a map of the USA (perhaps a heatmap) to show frequency of a certain characteristic among states. I am not sure of what package to use or if my data is in the proper form. My ...
4
votes
1answer
184 views
Custom Heat Map in R
I need to create custom heat map as illustrated in the attached figure. It is different from a conventional heat map in the sense that I want it to use two color gradients, one for positive values and ...
4
votes
1answer
181 views
Put the Y axis on the left of a heatmap?
How do I make a heatmap with the Y axis labels on the left? It seems to default to the right. Do I need to make a custom axis using axis()?
4
votes
2answers
813 views
R: How do I display clustered matrix heatmap (similar color patterns are grouped)
I searched a lot of questions about heatmap throughout the site and packages, but I still have a problem.
I have clustered data (kmeans/EM/DBscan..), and I want to create a heatmap by grouping the ...
4
votes
4answers
892 views
R: How can I make a heatmap with a large matrix?
I have a 1000*1000 matrix (only includes integer 0 and 1), but when I tried to make a heatmap, error occurs because it is large and I can't do it.
How can I create a heatmap with such a large matrix? ...
4
votes
2answers
700 views
Creating a heat map from (x,y) corrdinates in R
I have (x,y) data in a text file (data.csv) I would like to make into a heat map.
X Y
-60 -18
60 -62
7 14
-22 -60
59 58
29 22
-58 -18
60 -61
7 14
-21 -59
61 59
29 22
-57 -18
-22 -59
59 ...
4
votes
3answers
717 views
ggplot2 heatmap : how to preserve the label order?
I'm trying to plot heatmap in ggplot2 using csv data following casbon's solution in
http://biostar.stackexchange.com/questions/921/how-to-draw-a-csv-data-file-as-a-heatmap-using-numpy-and-matplotlib
...
4
votes
5answers
2k views
Heatmap Tools For Web Apps
I have a client that want to have a web app I'm building for them display heat maps of the data.
I haven't worked with heat maps at all and I was wondering if anyone knew of some good tools for ...
3
votes
1answer
63 views
heatmap using scatter dataset python matplotlib
I am writing a script to make a heatmap for scatter data on two dimensionS. The following is a toy example of what I am trying to do:
import numpy as np
from matplotlib.pyplot import*
x = [1,2,3,4,5]
...
3
votes
1answer
149 views
R, ggplot2, heat map
I am trying to see if it is at all possible to produce a heat map of stock performance - something similar to the following where the largest value appears in one corner and the smallest in the other.
...
3
votes
1answer
140 views
A true heat map in R
I'd like to make a true heat map in R, much like a weather map, except my data is much more simple.
Consider this 3d data:
x <- c(1,1,1,1,1,2,2,2,2,2,3,3,3,3,3,4,4,4,4,4)
y <- ...
3
votes
1answer
84 views
Highlight cells in heatmap
I am currently trying to set up a heatmap of a matrix and highlight specific cells, based on two other matrices.
An example:
> SOI
NAP_G021 NAP_G033 NAP_G039 NAP_G120 NAP_G122
2315101 ...
3
votes
2answers
617 views
Heatmap Generation Library for PHP
I want to generate heatmap images as overlay for Google Maps. I am searching for a PHP library which can take multiple dimensions into account when generating the image. Let's say i have 2 dimensions: ...
3
votes
1answer
480 views
Simple PHP function to convert a number to a heatmap HTML background color?
My question is related to Algorithm to convert any positive integer to an RGB value but really it's not the same question -- that guy has mostly a data normalization problem, I actually have more of ...
3
votes
2answers
242 views
Extract color information from ggplot2?
Using this dummy code saved in a file named foo.txt...
COG,station1,station2,station3,station4,station5
COG000Z,0.019393497,0.183122497,0.089911227,0.283250444,0.074110521
...
3
votes
5answers
1k views
display a matrix, including the values, as a heatmap
What I'd like to do is take this matrix:
> partb
0.5 1.5 1a 1b -2 -3
A1FCLYRBAB430F 0.26 0.00 0.74 0.00 0.00 0.00
A1SO604B523Q68 0.67 0.33 0.00 0.00 0.00 0.00
...
3
votes
2answers
2k views
Generating density/heat maps like SpatialKey
SpatialKey generates some really nice looking heatmaps, and we're looking into what's involved in doing this for an internal project to visualize large amounts of points. I'm looking for feedback on ...
3
votes
3answers
676 views
Creating an Infographic In Python
I want to create a simple infographic in python. Matplotlib seems to have a lot of features but nothing that covers off my simple heatmap grid example.
The infographic is a simple 5 x 5 grid with ...
2
votes
1answer
383 views
heatmap ggplot2 color ramp (scale_fill_gradient)
I am trying to plot a heat map with ggplot2 and I would like to resize the colorbar and increase the font.
Here is the relevant part of the code:
g <- ggplot(data=melt.m)
g2 <- ...
2
votes
1answer
207 views
R heatmap with different color scales for different rows
I am wondering what would be an easy solution to produce heatmaps() with of composed data that require different scaling for different rows.
So in my case the columns represent different events of ...
2
votes
1answer
216 views
Google Maps Animated Heat Map
I was wondering if it would be possible to animate the heat map I've set up for my Google Map. It was easy enough to set up the google map and add the heat map to it. But it looks quite boring. I ...
2
votes
1answer
376 views
setting distance matrix and clustering methods in heatmap.2
heatmap.2 defaults to dist for calculating the distance matrix and hclust for clustering.
Does anyone now how I can set dist to use the euclidean method and hclust to use the centroid method?
I ...
2
votes
1answer
337 views
Heatmap for iPhone
I have an iPhone application in the AppStore and I would like to analyze it with a heatmap.In another words I would like to know where users touch on the screen when they use my app. I know there are ...
2
votes
1answer
472 views
wpf bing map application with heat map?
i am trying to integrate bing map with heat map feature into my wpf desktop application, is there any API to do this? i searched the microsoft website and i can only found API for developing a map ...
2
votes
1answer
869 views
R draw kmeans clustering with heatmap
I would like to cluster a matrix with kmeans, and be able to plot it as heatmap. It sounds quite trivial, and I have seen many plots like this. I have tried to google atround, but can't find a way ...
2
votes
3answers
777 views
how to resize heatmap without rescaling?
I am using R version 2.12.1 on Win XP.
I have done a heatmap with dendrogram using the heatmap.2 function.
The heatmap basically looks like I want it to be, but the labels of the columns are cut ...
2
votes
2answers
520 views
Problem or bug in xticklabel_rotate while drawing heatmap and rotating xtick labels in Matlab
I have been drawing heatmaps with labels in Matlab, mainly using the functions imagesc to draw the heatmap and xticklabel_rotate to rotate the xtick labels.
(please see here for xticklabel_rotate).
...
2
votes
3answers
476 views
Is there a better way to create Keyword frequency table in R?
I want to take a csv export of my bibtex literature database and analyse the correlation between keywords and Journals. I start off with a csv file containing one row per piece of literature, each ...
2
votes
2answers
292 views
Equivalent to imshow in Clojure?
I'm looking for a way to visualize a 2d java array that's being updated in a simulation written in clojure the same way I would use imshow in matplotlib to visualize a numpy array.
What's the best ...
2
votes
1answer
154 views
Heatmap to Show Filesystem diffs on Server?
I've been tasked with creating a simple Python web-based app to graphically represent the "differences" between various servers, in terms of the contents of various key config files throughout the ...
2
votes
1answer
409 views
How do I superimpose one bitmap image on another in GDI+?
Using GDI+ I've made a heatmap bmp and I'd like to superimpose it on top of my bmp map. I've saved the two bmps to disk, and they look good, I just need a way to put them together. Is there any way to ...
2
votes
3answers
2k views
Heatmap in V3 without Fusion Tables?
The new FusionTablesLayer in Google Maps API version 3 has an option to display as a heatmap instead of points. Here's the example. Is there a way to get the heat map display without using Fusion ...
2
votes
1answer
150 views
Dialog usage analysis/heatmap tools
Are there any tools out there, for MFC apps in particular, which can be used to gather data on how users use dialogs... of primary interest is which controls are accessed most often.
I'd guess one ...
2
votes
2answers
630 views
Cluster Heat Maps Library
Is there any Library in Java that has Cluster Heat Maps already implemented ?
Can I use that Library in my code to generate a cluster heat map ?
I am looking to plot cluster heat maps from gene ...
2
votes
2answers
2k views
How to: create a heat map of the market
I am interested in creating a heat map of the stock market using internal data, in much the same way as the following site: http://www.smartmoney.com/map-of-the-market/
We have all the data necessary ...
2
votes
3answers
2k views
Generating Geo-Referenced Images in C#
I want to create some heat-map style tiles to overlay over our base maps using Open Layers. Basically, I want to divide some some bounding box into a grid, and display each square of the grid using a ...
1
vote
0answers
77 views
heatmaps with huge data
I'm trying to cluster data and then plotting a heatmap using heatmap.2 from gplots, the script works perfectly with matrices up to 30000 rows, the problems is that I'm using matrices up to 500000 rows ...
1
vote
2answers
97 views
Text Plot in R: Is there a way to do a text heat map?
I have a text document and want to make a heat map out of it, color coding the words according to a numeric value assigned to each word.
Any thoughts on how to do this?
The data frame would be set ...
1
vote
1answer
191 views
R: heatmap.2 change color key
I have a question about the package gplots. I want to use the function heatmap.2 and therefore I want to change my symmetric point in color key from 0 to 1. Normally when symkey=TRUE and you use the ...
1
vote
2answers
90 views
heatmap in excel 2007
I have some distances in Excel in the following format
I need to create a heatmap in Excel or in any other tool, so that I would be able to differentiate the values from each of the data.
1
vote
1answer
58 views
Can't see a heatmap using Heatma.ps SDK
I successfully installed heatma.ps SDK (https://heatma.ps) in my iPhone application. It tracks all the touches and gestures, but I can't view a heatmap when I shake my device. Any idea why? There is ...
1
vote
1answer
102 views
Free Heatmap software for iOS apps
I need to analyze my iPad application in terms of usability. I think the best way to do it is using heatmaps analytics. Do you know of any good one for iOS that would be free?
1
vote
1answer
238 views
Heatmaps in R using ggplot function - how to cluster rows?
I am currently generating heatmaps in R using the ggplot function. In the code below.. I first read the data into a dataframe, remove any duplicate rows, factorise timestamp field, melt the dataframe ...