Title: | Strategies of Resistance Data Project |
---|---|
Description: | Provides you with easy, programmatic access to SRDP data. |
Authors: | Harriet Jane Goers |
Maintainer: | Harriet Jane Goers <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.0 |
Built: | 2025-02-10 04:59:37 UTC |
Source: | https://github.com/fragmentation-project/srdpdata |
A dataset containing details of all self-determination movements and the countries they challenged from 1960 to 2005.
groups
groups
A data frame with 5549 rows and 5 variables:
group's unique ID
group's name
calendar year
country the group is challenging
the ISO3C for the country the group is challenging
http://www.kathleengallaghercunningham.com/data-projects.html
A dataset containing details of all self-determination movements' and their factions' use of violent and non-violent tactics from 1960 to 2005.
orgs
orgs
A data frame with 12017 rows and 19 variables:
group's unique ID
group's name
organisation's unique ID
organisation's name
calendar year
Any violence committed against government or people working for government (military and police forces included)
Any violence committed against government or people working for government (military and police forces included) wherein at least one person died (regardless of who that person is)
Any violence commited against another organization operating within the same group in the dataset
Any violence commited against another organization operating within the same group in the dataset wherein at least one person died (regardless of who that person is)
Any violence committed against civilians of the group’s population
Any violence committed against civilians in the group’s population wherein at least one person died (regardless of who that person is)
Any violence against civilians outside of the group’s population
Any violence against civilians outside of the group’s population wherein at least one person died (regardless of who that person is)
Reports of strikes, tax refusal or consumer boycotts that are either organized by the organization, or people from the organization have participated
Rally, protest, or demonstration either organized by the organization, or people from the organization have participated
Sit-ins, occupations, or blockades reported; either organized by the organization, or people from the organization have participated
Hunger strike, self-immolation or other self-harm reported; either organized by the organization, or people from the organization have participated
Organization registers as political party, participates in an election, participates in a national or local electoral campaign
Organization boycotts an election or withdrawals from political office or coalition in the government
http://www.kathleengallaghercunningham.com/data-projects.html
This function provides a dataset of all SRDP groups, the countries they are challenging, and their start and end dates. It covers the period between 1960 and 2005. You can use this function to access a long dataframe (one observation for each group-year dyad), or a wide dataframe (one observation for each group, with their start and end years provided in specific columns).
srdp_groups(wide = FALSE)
srdp_groups(wide = FALSE)
wide |
Logical. When FALSE (default), provides a dataframe with one observation for every group-year dyad. When TRUE, provides a dataframe with one observation for every group. |
Please note, if a group started before 1960, its start year is listed as NA. If a group ended after 2005, its end year is listed as NA.
A tibble, with each group's kgcid, name, country, start year, end year, country challenged
groups <- srdp_groups(wide = TRUE)
groups <- srdp_groups(wide = TRUE)
This function provides a dataset of all organizations, their groups, and their start and end dates. It covers the period between 1960 and 2005. You can use this function to access a long dataframe (one observation for each organization-year dyad), or a wide dataframe (one observation for each organization, with their start and end years provided in specific columns).
srdp_orgs(wide = FALSE)
srdp_orgs(wide = FALSE)
wide |
Logical. When FALSE (default), provides a dataframe with one observation for every organization-year dyad. When TRUE, provides a dataframe with one observation for every organization. |
Please note, if an organization started before 1960, its start year is listed as NA. If an organization ended after 2005, its end year is listed as NA.
A tibble, with each organization's kgcid, group name, facid, faction name, start year, and end year
orgs <- srdp_orgs(wide = TRUE)
orgs <- srdp_orgs(wide = TRUE)
This function provides a dataset of all SRDP organizations, their groups, the countries they are challenging, and their yearly use of violent and non-violent tactics. It covers the period between 1960 and 2005.
srdp_tactics()
srdp_tactics()
A tibble, with each group's facid, name, kgcid, name, country, country challenged, and tactics
tactics <- srdp_tactics()
tactics <- srdp_tactics()