For this exercise we will use the US murders dataset. Make sure you load it prior to starting.
library(dslabs)
data("murders")
Compute the total murder count over all 51 states using the sum()
function and
store your result in an object named total_murders
.