views:

20

answers:

1

I can create a chart with a logarithmic scale on one axis, but I need to have a probability scale on the other axis as well.

Thanks in advance.

A: 

I finally figured this out, using Flot (http://code.google.com/p/flot/). It allows for custom axis transforms using JavaScript, so I basically fed Math.log/Math.exp to one scale, and the JavaScript equivalent of Excel's NORMSDIST and NORMSINV to the other scale. Works great.

Dave Gruska