Julia

From edegan.com
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/