Skip to content

Instantly share code, notes, and snippets.

@deanmarchiori
Last active August 31, 2022 21:42
Show Gist options
  • Save deanmarchiori/2e128ec76c7b2d8a258bee0882d0bf75 to your computer and use it in GitHub Desktop.
Save deanmarchiori/2e128ec76c7b2d8a258bee0882d0bf75 to your computer and use it in GitHub Desktop.
Army Military Fatalities
# source: https://twitter.com/internetdepths/status/1564949689962827776
library(tibble)
tibble(
year = 1993:2003,
fatalities = c(237, 233, 209, 194, 150, 168, 187, 161, 168, 202, 255),
rate_per_thous_soldiers = c(0.35, 0.36, 0.34, 0.33, 0.26, 0.29, 0.33, 0.28, 0.28, 0.34, 0.38)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment