The dataset 'us_crime_rates_spec_tbl_df' contains crime statistics for the United States, including various types of crimes and population data for each year. This dataset is structured as a tibble for ease of use within the R ecosystem. This naming convention helps distinguish this dataset as part of the 'usdatasets' package.
Usage
data(us_crime_rates_spec_tbl_df)
Format
A tibble with 60 rows and 12 columns:
- year
Numeric year of the recorded data, e.g., 2000, 2001.
- population
Numeric population total for the respective year.
- total
Numeric total number of crimes reported.
- violent
Numeric total number of violent crimes.
- property
Numeric total number of property crimes.
- murder
Numeric total number of murders.
- forcible_rape
Numeric total number of forcible rapes.
- robbery
Numeric total number of robberies.
- aggravated_assault
Numeric total number of aggravated assaults.
- burglary
Numeric total number of burglaries.
- larceny_theft
Numeric total number of larcenies.
- vehicle_theft
Numeric total number of vehicle thefts.