Reputation: 4472
You can iterate over the columns with:
for c in eachcol(dataframe)
...
end
where c
is the vector of values in that column.
How can I iterate and get both the name of the column and the values in that column?
Upvotes: 3
Views: 482