`push!(df, [...values])` works, although I would worry a bit about efficiency.
On Monday, September 14, 2015 at 7:37:04 AM UTC-4, Nils Gudat wrote: > > Works the same way it would in pandas: > > df = DataFrame(col1 = rand(10), col2 = rand(10)) > > add a column by doing: > > df[:col3] = rand(10) > >
