How Can I create a pre-filled Col List Box with all the Vector Columns of the current data table?
Like << Modeling Type({"Continuous"}), but for modeling type Vector.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
New Window( "Vector columns",
Col List Box(All, width( 250 ),<< Modeling Type({"Continuous"}) ),
Col List Box(All, width( 250 ),<< Modeling Type({"Vector"} ) ));
Seems to be an issue of All - which doesn't pick All columns .
is there a command All_even_the_Expressions ?