- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Is there an equivalent function to excel's BETA.INV() in JSL?
I'm trying to calculate confidence intervals with the following formula that I use in Excel:
=BETA.INV(alpha/2, x, y -x +1)
I can't seem to find an equivalent function in the scripting index so am not sure if one exists. Any help is appreciated.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Is there an equivalent function to excel's BETA.INV() in JSL?
Hi @iamericha The Beta Quantile function is what you are looking for.
https://www.jmp.com/support/help/en/17.0/#page/jmp/probability-functions-2.shtml#ww2695691
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Is there an equivalent function to excel's BETA.INV() in JSL?
Hi @iamericha The Beta Quantile function is what you are looking for.
https://www.jmp.com/support/help/en/17.0/#page/jmp/probability-functions-2.shtml#ww2695691
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Is there an equivalent function to excel's BETA.INV() in JSL?
In addition to @MRB3855 response, I will point you to the Scripting Index
Help=>Scripting Index=<Beta Quantile
It will give you the definition along with an example
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Is there an equivalent function to excel's BETA.INV() in JSL?
Thank you for the screenshot!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Is there an equivalent function to excel's BETA.INV() in JSL?
Thank you!