How to Remove a Distribution Comparison?
Hi. I'd like to know if there's a way to remove a "Compare Distributions" from an existing Distribution platform output using JSL. For example: Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
obj = Distribution(
Column(:Height, :Weight),
Fit Distribution("All")
);
//These are things I've tried to remove the CmpDist for the Height Distribution, but did not work:
obj[1] << Re
...