JMP scripting - Double FOR loop: H List Box and V List Box
Hi everyone,I started to learn scripting and I'm trying to do a Window with 6 scatteplot: 2 vertical + 3 horizontal.I've tried a double for loop but I don't know why it doesn't work. It gives no error but I cannot get the images.The code is:BladeList = List( "Blade8", "Blade61", "Blade74" );
New Window( "Oneway Advisor",
H List Box(
For( j = 1, j <= 2, j++,
V List Box(
For( i = 1, i <= ...
johnmoore