More iSAX index visualizations
We are not done yet! There exist ways to improve the previous visualization by adding more information to the output as well as the ability to compress various parts of it – there is always the danger of putting too much information on a graph or a plot, but we are not going to make that mistake here.
First, we are going to go to the ZoomableTreemap
directory in order to try a zoomable structure named Zoomable Treemap, which is better when dealing with large iSAX indexes.
The Zoomable Treemap uses an additional attribute called value
. In this case, I had two choices: either change the output of the Python script or change the JavaScript code. I decided to do the latter. So, I changed the value
attribute in the JavaScript code to size
, which is what the Python script generates. However, in our case, this created a bug in the JavaScript code related to the sum of the presented values, which means that this was not the correct decision.
Therefore...