Storing data tables as metadata (table variables) JSL
Table variables are used to store metadata within a data table (JSL doc, general doc) However, they seem to be limited to variables as strings only (see code below). What would be the best option to store a data table as a table variable? Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt_metadata = Open( "$SAMPLE_DATA/Solubility.jmp" );
dt << Set Table Variable( "dt_user
...