Changing Column Data Types
Hi, I wanted to change my column data types to continuous and numeric but the following is giving me a scriptable[] error, I'm not sure what that means.Column(dt, 1) << Data Type( Numeric ); Column(dt, 1) << Set Modeling Type (Conitnuous);So, I used this next line of code: dt:Column(1) << Data Type( Numeric );
dt:Column(1) << Set Modeling Type( Continuous );But it still doesn't like it. Any sugge...