Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 676 Bytes

report.md

File metadata and controls

31 lines (21 loc) · 676 Bytes

Report on Gun Murders

alexwmlab 2023-07-18

Introduction

This is a report on 2010 gun murder rates obtained from BBI reports. The original data was obtained from this Wikipedia page.

We are going to use the following library:

library(tidyverse)

and load the data we already wrangled:

load("rda/murders.rda")

Murder rate by state

We note the large state to state variability by generating a barplot showing the murder rate by state:

##################################################################