๐ Data Wrangling with DataFrames.jl Cheat Sheet
Download your own PDF copy Cheat Sheet for DataFrames.jl v1.x (English) Cheat Sheet for DataFrames.jl v1.x (Chinese) Credit: Chinese translation by zy 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. ...