Using CSV.read() to import data from a data input file into a DataFrame

The commented code is broken, it looks like two code fragments randomly pasted together.

in addition, Data[:1] is not valid code either

what you should be getting is

julia> Data[:1]
ERROR: ArgumentError: syntax Data[column] is not supported use df[!, column] instead
...