Create country-year/month/day panels consistent with the COW or Gleditsch & Ward lists of independent states. I mainly use this for merging different data sources:
What the package does:
library("states")
data(gwstates)
data(cowstates)
sfind
, this can be helpful for manual
coding:sfind(260)[, 1:6]
#> list ccode code3c country_name start end
#> 45 GW 260 GFR German Federal Republic 1949-09-21 9999-12-31
#> 299 COW 260 GFR German Federal Republic 1955-05-05 1990-10-02
sfind("German")[, 1:6]
#> list ccode code3c country_name start end
#> 44 GW 255 GMY Germany (Prussia) 1816-01-01 1945-05-07
#> 45 GW 260 GFR German Federal Republic 1949-09-21 9999-12-31
#> 46 GW 265 GDR German Democratic Republic 1949-10-05 1990-10-02
#> 297 COW 255 GMY Germany 1816-01-01 1945-05-08
#> 298 COW 255 GMY Germany 1990-10-03 9999-12-31
#> 299 COW 260 GFR German Federal Republic 1955-05-05 1990-10-02
#> 300 COW 265 GDR German Democratic Republic 1954-03-25 1990-10-02
<- state_panel(1991, 2001)
countries
str(countries)
#> 'data.frame': 2091 obs. of 2 variables:
#> $ gwcode: int 2 2 2 2 2 2 2 2 2 2 ...
#> $ year : int 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 ...
data("polity")
str(polity)
#> 'data.frame': 17228 obs. of 3 variables:
#> $ ccode : num 700 700 700 700 700 700 700 700 700 700 ...
#> $ year : num 1800 1801 1802 1803 1804 ...
#> $ polity: num -6 -6 -6 -6 -6 -6 -6 -6 -6 -6 ...
plot_missing(polity, x = "polity", ccode = "ccode", statelist = "COW")
For the underlying data (missing info requires date input):
$date <- as.Date(paste0(polity$year, "-01-01"))
polity<- missing_info(polity, x = "polity", ccode = "ccode",
mm time = "date", period = "year",
statelist = "COW")
head(mm)
#> ccode date independent missing_value status
#> 18671 2 1800-01-01 0 FALSE Complete, non-independent
#> 18672 2 1801-01-01 0 FALSE Complete, non-independent
#> 18673 2 1802-01-01 0 FALSE Complete, non-independent
#> 18674 2 1803-01-01 0 FALSE Complete, non-independent
#> 18675 2 1804-01-01 0 FALSE Complete, non-independent
#> 18676 2 1805-01-01 0 FALSE Complete, non-independent
The package is on CRAN and can be installed with:
install.packages("states")
Or to install from GitHub:
library("remotes")
::install_github("andybega/states") remotes
For the Gleditsch and Ward (G&W) state data:
Gleditsch, Kristian S. & Michael D. Ward. 1999. “Interstate System Membership: A Revised List of the Independent States since 1816.” International Interactions 25: 393-413.
For the Correlates of War (COW) state data:
Correlates of War Project. 2017. “State System Membership List, v2016.” Online, https://correlatesofwar.org