Filter observations and variables and directly view the result on screen.
Examples
# Example data frame
my_data <- dummy_data(1000)
# G et a quick filtered view
my_data |> where.(sex == 1 & age < 25,
c(sex, age, household_id, education))
