Last active
June 16, 2020 20:14
-
-
Save burch-cm/669355faa7a2b8961643331267f5ed97 to your computer and use it in GitHub Desktop.
How long did the Confederacy last in Scaramuccis?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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