# >
Filtering rows
For these exercises, we’ll use a new clean version of the dog breed traits data set.
- Import data from https://jeffreyrstevens.quarto.pub/dpavir/data/dog_breed_traits_clean.csv and assign to
traits
.
- View dogs only with short coats.
# >
- View a data frame excluding dogs with short coats.
# >
- View dogs with double or silky coats.
# >
- View dogs with double or silky coats and shedding ratings 3 or below.
# >
- View dogs with
NA
for coat_type.
# >
- View dogs with
NA
for any column.
# >
- View dogs not missing any data.
# >
- View dogs sorted by breed name.
# >
- View dogs sorted by coat type then coat length then affectionate rating.
# >