May 13, 2021
Credit:
Chinese translation by zy
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
If you have any questions/suggestions about this cheat sheet, please submit an issue to to this GitHub repo.