I’m learning Julia with DataFrames.jl and see this one example df[!, :name] to get all column elements under :name, which shows the same result as df[:, :name]. My question is:
That’s exactly what I’m looking for. I thought “!” is an commonly used matrix selector in Julia and forget to check it in DataFrames package. Great thanks!