How to add box plots to points when supplied Y variables as list to graph builder?
The following example script from an earlier thread (solved, thanks to @jthi) of mine allow me to plot Y variables as points when Y variables are supplied from a list.I want to add Box Plots in addition to Points in my chart. How to add box plots in the script below?Names Default To Here(1);
dt = Open("$sample_data\Big Class.jmp");
y_values = {"name", "age", "sex", "weight"};
variables_expr = Expr
...