I am trying to read the first column of “test.csv” file using CSV.jl
. I don’t understand why this doesn’t work:
test.csv
is:
a;b;c
1;2;3
4;5;6
9;8;7
using CSV
y_train = CSV.File("test.csv"; select=[:, 1])
Is it possible doing the same using CSV.Read
?