I have a list with names of 30 columns in a dataframe.
I have to apply replace to these 30 columns only. I tried:
list = names(df[!,r"Com"]) - ok!
Then I am trying:
replace!(df[!,list],"RR" =>"AA") - Fail
How can I do such transformation(with certain columns at once)?