April 2018
Beginner
238 pages
7h 13m
English
Before using Julia scripts, you should add some standard packages and update all packages to the current levels. You can do that with these commands directly in the Julia console rather than in a Notebook:
Pkg.add("DataFrames")Pkg.add("RDatasets")Pkg.add("Gadfly")Pkg.update()
The packages will take some time to download and install. The process will produce voluminous output in Jupyter, as shown in the following display:

You may be better off running this update ...