April 2018
Beginner
238 pages
7h 13m
English
Now that we have Julia installed and the engine added to Jupyter, we can see a sample script run in a Julia Notebook, such as this:
Pkg.add("RDatasets")using RDatasetsdescribe(dataset("datasets", "iris"))
This script loads in RDatasets (this contains several standard datasets commonly used in data science). It then runs the Julia describe command on the iris dataset.
This is resultant display:

This display continues for the rest of the items in the iris dataset.