Tom Kwong's Infinite Loop
Technology ideas never end...

Data Wrangling with DataFrames.jl Cheat Sheet

May 13, 2021

banner image

Download your own PDF copy

Credit:

Where to get the data

The examples are based on the Kaggle Titanic data set. You can use the following code to download the data:

using DataFrames
using CSV

function download_titanic()
    url = "https://www.openml.org/data/get_csv/16826755/phpMYEkMl"
    return DataFrame(CSV.File(download(url); missingstring = "?"))
end

Questions/Suggestions

If you have any questions/suggestions about this cheat sheet, please submit an issue to to this GitHub repo.

Older versions


Loading Comments...