where df is an existing dataframe and new_column is a Vector{Float64}.
The result creates a new df where the content of new_column has the name “x1”. How can I set the name of new_column to something specific as I create the new dataframe?
I believe the typical method is df.my_specifc_name = new_column or if you want more control over where in the dataframe the column ends up, try insertcols! Functions · DataFrames.jl!