I need to change all the columns in a table to continuous. In a script
Go to Solution
dt = current data table();
for (i = 1, i <= ncols(dt), i++,
column(dt, i) << data type(numeric);
column(dt, i) << set modeling type(continuous);
);
View solution in original post