August 2018
Beginner
282 pages
5h 51m
English
Similar to functions that are used in other languages, Julia can perform most of the rudimentary statistics on your data by using the describe function, as shown in the example script that follows:
using RDatasets
describe(dataset("datasets", "iris"))
This script accesses the iris dataset and displays summary statistics on the dataset.
If we were to build a Notebook to show describe in use against the iris dataset (which we loaded in the previous example), we would end up with a display such as this:

You can see the standard statistics that have been generated for each of the variables in the dataset. I thought ...
Read now
Unlock full access