Skip to content

Instantly share code, notes, and snippets.

@burch-cm
Last active June 16, 2020 20:14
Show Gist options
  • Select an option

  • Save burch-cm/669355faa7a2b8961643331267f5ed97 to your computer and use it in GitHub Desktop.

Select an option

Save burch-cm/669355faa7a2b8961643331267f5ed97 to your computer and use it in GitHub Desktop.
How long did the Confederacy last in Scaramuccis?
library(lubridate)
# One Scaramucci is apx 10 days
mooch <- days(10)
# Date of the Confederate Provisional Constitution
conf_start <- ymd("1861/02/08")
# Date of surrender
conf_end <- ymd("1865/04/09")
# length of time the Confederacy was a thing
conf_dates <- conf_start %--% conf_end
conf_time <- as.duration(conf_dates)
# that's about 4.16 years
# what's that in Scaramuccis?
conf_time/as.duration(mooch)
# One Confederacy is 152.1 Scaramuccis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment