Start by loading the library and data.
library(dslabs)
data(murders)
Compute the per 100,000 murder rate for each state and store it in an object called murder_rate
.
Then use logical operators to create a logical vector named low
that tells us which entries of murder_rate
are lower than 1.