Difference between revisions of "Julia"

From edegan.com
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 17:34, 24 July 2019

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/