How to call a column in DataFrame that has a space in the name

First idea:

julia> getproperty(dfs, :"first last")
4-element Vector{Int64}:
 1
 2
 3
 4

Second:

julia> dfs[!,"first last"]

Lastly, perhaps change the design not to have to do so?

1 Like