tags:

views:

52

answers:

1

I want to represent 4 dimensional data in RGB colors so that when clustering is done similar nodes have similar colors or by position on an XY grid. how can this be done?

A: 

4d? like 3d data with the time dimension?

Anyway, it depends on what technology we're talking about. It sounds like you would need a 3d scatter chart with your fourth dimension being a selection control such as a slider that changes the time. You could use WPF w/ silverlight if you want to display it on a site but I'm sure a variety of technologies can be used to get the same result. You'll need to modify most common solutions to get the similar colors according to position. Statistical algorithms like k-means is usually suited for clustering data together.

James Santiago
3d scatter is good except I want this to produce graphs for a paper and 3d graphs don't really make good representations on a 2d statis surface, I was hoping I could get just convert 4d info to 3d while keeping their relative values correct
iteratorr
I don't see how this is a programming question. Can you explain the data types of each dimension? Can you explain what technology you plan on using to implement this data display? How about the ranges of each dimension. When I think of 4d data, I think of something like the position of stars over a period of time(1d = x, 2d = y, 3d = z, 4d = time).
James Santiago