Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Created July 30, 2013 10:48
Show Gist options
  • Save randyzwitch/6111961 to your computer and use it in GitHub Desktop.
Save randyzwitch/6111961 to your computer and use it in GitHub Desktop.
Julia readdlm function with specified type
julia> airline_array = readdlm("/Users/randyzwitch/airline/1987.csv", ',' , String);
julia> size(airline_array)
(1311827,29)
julia> typeof(airline_array)
Array{String,2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment