Tabulate all numeric columns in a table
Hi,I'm trying to creat a tabulate table that cill contain all numeric columns (and then another one with the categorical ones).I tryed running this but it doesn't work.Any suggestion?TIAdt = Open( "$SAMPLE_DATA/Big Class.jmp" );
NumericCols = {};
for(i = 1, i <= N Cols(dt), i++,
Col = Column(dt,i);
ColDataType = Col << Get Data Type;
If( ColDataType == "Numeric",
Insert Into(NumericCol
...