# csv file
stats <- read_csv("../00_data/myData.csv")
stats <- stats %>%
janitor::clean_names()
Which country has the highest headshot percentage?
ggplot(data = stats) +
geom_col(mapping = aes(x = headshot_percentage,
y = fct_reorder(country, headshot_percentage)))
According to the data plot, Mongolia has the highest headshot percentage.