cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
gene
Level III

How do I change all columns in a data table to continuous. I built the table from a csv file so all subsets are character

I need to change all the columns in a table to continuous.  In a script

1 ACCEPTED SOLUTION

Accepted Solutions
pmroz
Super User

Re: How do I change all columns in a data table to continuous. I built the table from a csv file so all subsets are character

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

1 REPLY 1
pmroz
Super User

Re: How do I change all columns in a data table to continuous. I built the table from a csv file so all subsets are character

dt = current data table();

for (i = 1, i <= ncols(dt), i++,

     column(dt, i) << data type(numeric);

     column(dt, i) << set modeling type(continuous);

);

Recommended Articles