Baselight

Crimes Data

crime rates in united states

@kaggle.edwardotieno_2019_crimes_data

Crimes Dataset
@kaggle.edwardotieno_2019_crimes_data.crimes_dataset

  • 19.36 KB
  • 20 rows
  • 22 columns
year

Year

population

Population

violent_crimes

Violent Crimes

violent_crime_rate

Violent Crime Rate

murder_nonnegligent_manslaughter

Murder Nonnegligent Manslaughter

murder_nonnegligent_manslaughter_rate

Murder Nonnegligent Manslaughter Rate

rape_revised_definition

Rape (revised Definition)

rape_revised_definition_rate

Rape (revised Definition) Rate

rape_legacy_definition

Rape (legacy Definition

rape_legacy_definition_rate

Rape (legacy Definition) Rate

robbery

Robbery

robbery_rate

Robbery Rate

aggravated_assault

Aggravated Assault

aggravated_assault_rate

Aggravated Assault Rate

property_crime

Property Crime

property_crime_rate

Property Crime Rate

burglary

Burglary

burglary_rate

Burglary Rate

larceny_theft

Larceny- Theft

larceny_theft_rate

Larceny- Theft Rate

motor_vehicle_theft

Motor Vehicle Theft

motor_vehicle_theft_rate

Motor Vehicle Theft Rate

20002814219061425486506.5155865.59017832408016145911706324101825843618.32050992728.869715902477.31160002412.2
20012853175591439480504.5160375.69086331.8423557148.5909023318.6104371893658.12116531741.870922672485.71228391430.5
20022879739241423677494.4162295.69523533.1420806146.1891407309.5104552773630.6215125274770573792450.71246646432.9
20032907889761383676475.8165285.79388332.3414235142.5859030295.4104428623591.2215483474170268022416.51261226433.7
20042936568421360088463.2161485.59508932.4401470136.7847381288.6103193863514.12144446730.369370892362.31237851421.5
20052965070611390745469167405.69434731.8417438140.8862220290.8101747543431.52155448726.967834472287.81235859416.8
20062993984841435123479.3173095.89447231.6449246150874096292100196013346.62194993733.166263632213.21198245400.2
20073016211571422970471.8171285.79216030.6447324148.3866358287.298822123276.42190198726.165915422185.41100472364.9
20083040597241394461458.6164655.49075029.8443563145.9843683277.597741523214.6222888773365862062166.1959059315.4
20093070065501325896431.91539958924129.1408742133.1812514264.793370603041.32203313717.763380952064.5795652259.2

CREATE TABLE crimes_dataset (
  "year" BIGINT,
  "population" BIGINT,
  "violent_crimes" BIGINT,
  "violent_crime_rate" DOUBLE,
  "murder_nonnegligent_manslaughter" BIGINT,
  "murder_nonnegligent_manslaughter_rate" DOUBLE,
  "rape_revised_definition" DOUBLE,
  "rape_revised_definition_rate" DOUBLE,
  "rape_legacy_definition" BIGINT,
  "rape_legacy_definition_rate" DOUBLE,
  "robbery" BIGINT,
  "robbery_rate" DOUBLE,
  "aggravated_assault" BIGINT,
  "aggravated_assault_rate" DOUBLE,
  "property_crime" BIGINT,
  "property_crime_rate" DOUBLE,
  "burglary" BIGINT,
  "burglary_rate" DOUBLE,
  "larceny_theft" BIGINT,
  "larceny_theft_rate" DOUBLE,
  "motor_vehicle_theft" BIGINT,
  "motor_vehicle_theft_rate" DOUBLE
);

Share link

Anyone who has the link will be able to view this.