November 2017
Beginner
316 pages
6h 40m
English
What are DataFrames? They are basically a type of data structure that can hold the metadata about their data and hence they can be easily accessed as well as queried just like a database table does using SQL.
Julia provides a package named DataFrames.jl, which provides the necessary data structures for doing the job. It's the recommended source for doing DataFrame operations and as it's listed in the METADATA.jl. It can easily be downloaded as follows:
# install the package julia> Pkg.add("DataFrames") # first time load takes times due to precompilation julia> using DataFrames # check the functions provided by DataFrames julia> names(DataFrames) 254-element Array{Symbol,1}: :& Symbol("@csv2_str") Symbol("@csv_str") ...Read now
Unlock full access