Violent Crime Rates By US State
USA Crime Rates reviewed in 1977
@kaggle.mathchi_violent_crime_rates_by_us_state
USA Crime Rates reviewed in 1977
@kaggle.mathchi_violent_crime_rates_by_us_state
Violent Crime Rates by US State
This data set contains statistics, in arrests per 100,000 residents for assault, murder, and rape in each of the 50 US states in 1973. Also given is the percent of the population living in urban areas.
A data frame with 50 observations on 4 variables.
Murder is numeric and Murder arrests (per 100,000)
Assault is numeric and Assault arrests (per 100,000)
UrbanPop is numeric and UrbanPop arrests (per 100,000)
Rape is numeric and Rape arrests (per 100,000)
World Almanac and Book of facts 1975. (Crime rates).
Statistical Abstracts of the United States 1975. (Urban rates).
McNeil, D. R. (1977) Interactive Data Analysis. New York: Wiley.
CREATE TABLE us_violent_crime (
"unnamed_0" VARCHAR -- Unnamed: 0,
"murder" DOUBLE,
"assault" BIGINT,
"urbanpop" BIGINT,
"rape" DOUBLE
);
Anyone who has the link will be able to view this.