Name Unresolved: Column name will not resolved when I specify it as a value in a list
I am trying to calculate the AUC for each column in a data table. I am collecting all of the column names into a list "colNamesList", and retrieving each column name in Fit Model inside a For loop by incrementing the list subscript. However, the call to the array is not resolving inside the Fit Model call. If I include show(colNamesList[i]) on a separate line, it resolves fine, just not inside th...