01-introduction.Rmd
titanic %>% dplyr::glimpse()
#> Observations: 2,207
#> Variables: 8
#> $ gender <fct> male, male, male, female, female, male, male, female, male, …
#> $ age <dbl> 42.0000000, 13.0000000, 16.0000000, 39.0000000, 16.0000000, …
#> $ class <fct> 3rd, 3rd, 3rd, 3rd, 3rd, 3rd, 2nd, 2nd, 3rd, 3rd, 3rd, 3rd, …
#> $ embarked <fct> Southampton, Southampton, Southampton, Southampton, Southamp…
#> $ fare <dbl> 7.1100, 20.0500, 20.0500, 20.0500, 7.1300, 7.1300, 24.0000, …
#> $ sibsp <dbl> 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, …
#> $ parch <dbl> 0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, …
#> $ survived <fct> Perished, Perished, Perished, Survived, Survived, Survived, …