In JSL, how to use a column name using a dynamic variable name list?
For example, I have a table dt with n columns, X1, X2, ..., Xn. I need to draw distributions for EACH column, X(i), like below (repeat n times): Distribution( Continuous Distribution( Column( :X1), Horizontal Layout( 1 ), Vertical( 0 ), Normal Quantile Plot( 1 ), Capability Analysis( LSL( 4 ), USL( 22 ), Target( 13 ) ) ));How can I use a loop to do this? I tried the following, but it is not s...
