HI All,
i am using variability plateform with column switcher and reading median values from variability report into a variable.
it works fine for first, but when i switch click any other column in column switcher it generates error: "Cannot find item "Variability Chart for height" in outline context {"Variability Chart for height"}".
any workaround for this error. Thanks in advance.
-Ram
dt=Open( "$SAMPLE_DATA/Big Class.jmp");
new window("",
Hlistbox(
varcollist=dt<<get column names(string);
varobj=Variability Chart(
Y( :height ),
X( :age, :sex ),
Max Iter( 100 ),
Conv Limit( 0.00000001 ),
Number Integration Abscissas( 128 ),
Number Function Evals( 65536 ),
Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
Show Range Bars( 0 ),
Show Cell Means( 0 ),
Std Dev Chart( 0 ),
Show Box Plots( 1 ),
Variability Summary Report( 1 )
);
reportvar = varobj << Report;
try(Number Col Box("", stringval));
Try(string=reportvar[StringColBox(1)] << Get());
Try(stringval=reportvar[NumberColBox(9)] << Get()),
String Col Box("", string);
show(string);
));
csobj=varobj<<Column Switcher( :height, varcollist );