Package for opening .dat files

Create a project:

mkdir myproject
cd myproject
julia --project="."

and execute this code:

using CSV
using DataFrames

df=DataFrame(CSV.File("data.dat", delim=" "))

Does it work?

3 Likes