From a Selection of Column Names, how do I modify the resulting column name list
Hi there,
Maybe you can help me figure out what I am doing wrong here.
I have the following toy data table:
I have been having some trouble with refining a list of character column names becoming from the following script.
//get unique column names
cols = Current Data Table() << getColumnNames(Character);
//del columns I don't want
DELCOLS = {"Column 5", "Column 6"};
unique_col_name
...