i have an excel sheet with 5 columns and one of the column "Number" has a format of Data type(Character) and Modeling Type (Nomial). I wrote a script in JSL to perform a row operation. I need to change the format of the column "Number" as soon as I open the file in JMP. I want the required format to be Data Type(Numeric) and Modeling TYpe(Continous). I wrote a script like this:
dt=open();
current data table<<set name("Data Sheet");
dt=data table("Data Sheet");
dt<< column("Number",Numeric,Continous,Format(Best,12) );
and the script goes on...
but it is not changing the format of the column. could someone help me with the script.?