You can also iterate through pairs(eachcol(df))
julia> for (name, col) in pairs(eachcol(df))
@show name
end
You can also iterate through pairs(eachcol(df))
julia> for (name, col) in pairs(eachcol(df))
@show name
end