November 2018
Intermediate to advanced
460 pages
14h 1m
English
Make sure you have the CSV.jl and DataFrames.jl packages installed. If they are missing, add them using the following commands:
julia> using Pkgjulia> Pkg.add("DataFrames")julia> Pkg.add("CSV")
Also, download the following file and load it into a variable called df by using the following commands:
julia> download("https://openmv.net/file/class-grades.csv", "grades.csv")julia> using CSV, DataFrames, Statisticsjulia> df = CSV.read("grades.csv");
Read now
Unlock full access