What is the best approach for comparing data series that have completely different units?
For example the user may wish to look at a report to compare CPU (%) Disk Space (GB), Disk I/O (Read/s) and Paging (pages / second) to determine if there's any correlation.
Or they might know there's a problem but need to see a graph to work out which particular metrics may have caused it.
A common approach is to plot all the lines on the same y-axis. This renders the scale slightly useless but does allow for easy comparison.
The other approach is to have seperate graphs for each metric. This is allows y axises to show units and avoids arbitary scaling, but is harder to spot trends between series.
Are there other solutions? What's the best approach?
