Visualizing with Julia
Julia is a programming language specifically built for numerical computing. There are several features that make it a great fit for use as a Jupyter scripting language. We will use several of the available packages for visualization.
Of special note is that Julia has direct access to most R packages, so those can be used as well.
Note
A word of caution: I could not produce most Julia visualizations on a Windows PC. For this section, I used a Mac, and even then I had to try adding packages several times before things started to work.
Getting ready
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:
Note
I would recommend that you add a package by closing the Notebook, opening a Julia console, adding the package, reopening the Notebook, and then using the new package.
Pkg.add("DataFrames") Pkg.add("RDatasets") Pkg.add("Gadfly...