Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created January 26, 2022 09:24
library(dplyr)
library(ggplot2)
titanic_train %>%
filter(Age > 50, Sex == "female", Embarked == "S") %>%
select(Name, Age, Fare)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment