Loading data from CSV files

To load a CSV file into R:

library(readr)
guns <- read_CSV("https://hanoverstatslabs.github.io/resources/datasets/guns.csv")
View(guns)             # Opens up the data for viewing
## Below lines showcase a graph, and are not part of "loading the data"
own_rate <- guns$own_rate
names(own_rate) <- guns$country
dotchart(sort(own_rate))