BATMAN collects an extensive database of measurements of BATs on various computers. CAVE (Comparison and Visualization Environment) allows users to dynamically explore various graphs of BATMAN output, sliding between selected slices and projections of the database.
Here's how to download and compile CAVE:
wget http://ebats.cr.yp.to/merge-20070301 wget http://ebats.cr.yp.to/draw-20060614.c wget http://ebats.cr.yp.to/window-20060614.c wget http://ebats.cr.yp.to/window-20060614.h cp merge-20070301 merge chmod 755 merge cp draw-20060614.c draw.c cp window-20060614.c window.c cp window-20060614.h window.h gcc -O3 -fomit-frame-pointer -o draw draw.c window.c -lXm -lXt -lX11 -lmHere's how to merge several database files in the same directory as CAVE, let's say 20070214-katana.bz2 and 20070214-mace.bz2:
bzcat 20070214-katana.bz2 20070214-mace.bz2 | ./merge > merge.outHere's how to display the results:
./draw < merge.outCAVE allows many different choices of x axis, y axis, labels, etc. Try experimenting with the keystrokes listed on the ./draw screen.