Hi,
Is it possible to treat the "Distribution" function as modal? I am looking to create a distribution report with an arbitrary number of Continuous Distributions that I will later modify or change via JSL. I found that a dialog opens when I run the code below, but execution is not halted and the rest of my code is run before I have a chance to select my columns of interest.
I have also looked into using a Column Dialog, but cannot figure out how to directly code a distribution report object with an arbitrary number of Continuous Distributions. Any input on how to accomplish this is greatly appreciated!
dist = dt << Distribution( Stack ( 1 ), <<Modal );
vs putting something like below in a for loop...
Distribution(
Stack( 1 ),
Continuous Distribution(
Column( As Column( arbitraryName ) ),
Horizontal Layout( 1 )
Vertical( 0 ),
),
);
Many thanks,
Connor
Using JMP 16.0.0
Connor