I am trying to convert an array to a Julia dataframes and adding column names. Unfortunately, the solutions that I found doesn't seem to work....
using DataFrames
x = rand(4, 3)
df = convert(DataFrame, x)
# This doesn't work:
rename!(df, ["Col_A", "Col_B", "Col_C"])
names(df) = ["Col_A", "Col_B", "Col_C"])