Hi txnelson,
Thank you for your help. Just want to make sure I understand the following things in a correct way.
1.
colList = dt << Get Column Names( Continuous, String );
For my table, I should write it as
colList = dt << "Feature_1"( Continuous, String );
Is it correct?
2.
For( i = 2, i <= Nitems( colList ), i++,
In my case, it should be written as
For( i = 0, i <= feature_2000( colList ), i++,)
Is that correct?
So, I don't really undertand what does i=0, i=1, i=2 mean? Could you please explain?
"Nitems" should be changed to the column name of the last column (feature_2000). Is my understanding correct?
Also, do we need a ")" to stop this loop? The template you shown below didnot have the ")".
Thank you.
I will try the script tomorrow and give you a feebback.
Windermere