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