0

I need to duplicate the functionality of this EXCEL function in JavaScript - the inverse of the beta cumulative probability density http://office.microsoft.com/en-gb/excel-help/beta-inv-function-HP010335670.aspx.

Is there a JS library which offers this? I've tried Jstat (http://www.jstat.org/) but it does not appear to have this particular calculation.

Curtains
  • 21
  • 2

2 Answers2

2

I've solved this by building a more up to date version of the jStat Library from here: https://github.com/jstat/jstat

Curtains
  • 21
  • 2
0

I'm not sure what it is that you want, but did you heard of RGraph?

Luketep
  • 181
  • 1
  • 9
  • Thanks, but I'm not looking for a charting library in this case - I will be needing one later so will evaluate this one in time :) – Curtains Jul 23 '13 at 10:09