Julia

From edegan.com
Revision as of 17:34, 24 July 2019 by Ed (talk | contribs) (Created page with "Julia is a new language, which is popular with economists. To run our julia scripts, simply open a prompt to the directory and run: julia script.jl Not that you may need to...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Julia is a new language, which is popular with economists. To run our julia scripts, simply open a prompt to the directory and run:

julia script.jl

Not that you may need to install the dataframes and query packages. To do so:

julia
import Pkg; Pkg.add("DataFrames")
import Pkg; Pkg.add("Query")
exit()

Documentation on Julia is available from: https://docs.julialang.org/en/v1/manual/getting-started/