How to use Radio Boxes
I am brand new to JMP scripting and trying to self teach. I created a radio box:
New Window( "Example",
panelbox("Confidence Interval",
rb = Radio Box(
{"90%", "95%", "98%", "99%"},
Show( rb << Get() ),
),
My current question is how can I use the variable rb?
I tried this if(then) statement:
If(
:rb == "95%",
// then
:x = 1.96,
:rb == "90%", :x = 1.645,
:rb == "98%", :x = 2.326,
:rb == "
...