Hi how’s it going?
Say I have this dataframe
initial = DataFrame(:day=>["monday","monday","monday"],:name=>["bob","mike","phillis"],:temp=>["medium","high","low, medium"],:gender=>["male, female","male","female"])
How would I extract the names of the columns that contain a comma in at least one of their values?
For the above DataFrame I need it to return :temp and :gender