Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Errors
Summary

Instruction

Okay, there is something really wrong with our data! Let's have a look at the ages of people older than 130:

head(census2017[census2017$age > 130,])

Exercise

Display the data for people older than 150. To do this, use the head() function on the filtered rows. Use the census2018 data frame.