In the wikibook documentation it is said that delete!
can be applied to a set of columns, but I am not able to get it, in order to delete several columns by name in a single passage.
I did tried also using list comprehension, but I still got an error (while for multiple dataframes only it works):
[delete!(df, :colname) for df in [df1, df2, df3], colname in ["col2","col5"]];
Any hint?