View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
R Avery[_2_] R Avery[_2_] is offline
external usenet poster
 
Posts: 44
Default Using a Cube to store Histogram information?

Well, I ended up implementing a SparseCube class which represents a
n-dimensional cube, and after I made this, projecting the cube on to
one or two of its dimensions I made a SparseCubeProjection class, which
is able to serialize itself to Excel.

It is able to bucket the datarows and create projections of itself
quickly, so it seems to be good enough for my purposes.

Thanks.