pinochet

Manuscript, data, and replication materials for the paper "Deaths and Disappearances in the Pinochet Regime: A New Dataset" (2019)

https://github.com/danilofreire/pinochet

Science Score: 23.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 6 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.5%) to scientific vocabulary

Keywords

chile dataset human-rights-abuses pinochet truth-commission victims violence
Last synced: 9 months ago · JSON representation

Repository

Manuscript, data, and replication materials for the paper "Deaths and Disappearances in the Pinochet Regime: A New Dataset" (2019)

Basic Info
  • Host: GitHub
  • Owner: danilofreire
  • Language: TeX
  • Default Branch: master
  • Homepage: https://osf.io/vqnwu
  • Size: 10.5 MB
Statistics
  • Stars: 21
  • Watchers: 4
  • Forks: 6
  • Open Issues: 0
  • Releases: 0
Topics
chile dataset human-rights-abuses pinochet truth-commission victims violence
Created over 8 years ago · Last pushed over 5 years ago
Metadata Files
Readme

README.md

Deaths and Disappearances in the Pinochet Regime: A New Dataset

CRAN\_Status\_Badge Travis-CI Build
Status DOI

This Github repository contains data and documented R code for Deaths and Disappearances in the Pinochet Regime: A New Dataset by Freire et al (2019). We coded the personal details of 2,398 victims named in the Chilean Truth Commission Report along with information about the perpetrators and geographical coordinates for all identifiable atrocity locations. The dataset covers from 1973 to 1990 and includes 59 indicators. Please refer to our accompanying article and our online appendix for more details.

This branch has the data and code for the main article. The source code for the pinochet R package is available in the package branch of this repository.

Installation

The dataset is available in three formats: as an Excel spreadsheet, a csv file, and as the pinochet package for R. The stable version of the package is on CRAN. You can install it with:

install.packages("pinochet")

We plan to update the dataset by including information from other official sources. To install the latest version of the package, simply use:

if (!require("devtools")) { install.packages("devtools") } devtools::install_github("danilofreire/pinochet", ref = "package")

Then load the dataset with:

library(pinochet) data(pinochet)

Variables

There are 59 variables in our dataset. Most of them refer to information about the victims, such as gender, age, first and last name, and their political affiliation (if available). The Chilean Truth Commission Report, our main data source, also mentions some characteristics of the perpetrators when they could be identified. We include coordinates of latitude and longitude for all identifiable places used for torture or executions. We created a variable indicating whether the coordinates are exact or not. In some cases, the Truth Commission was not able to locate where the atrocities took place. We likewise indicate that the coordinates are approximate.

Our data codebook has the description of the variables. You can quickly see the variable names with:

names(pinochet)

Applications

To illustrate the potential uses of the package, we show some spatial and temporal variation of the data. We see that the Pinochet regime concentrated most of the violence in the first three months after the coup. The graph below describes time trends for the atrocities perpetrated by the dictatorship:

```

Install necessary packages

if (!require("tidyverse")) { install.packages("tidyverse") } if (!require("lubridate")) { install.packages("lubridate") }

Plot

pinochet %>% ungroup() %>% mutate(Year = year(startdatemonthly)) %>% groupby(Year) %>% tally() %>% filter(!is.na(Year)) %>% ggplot(aes(x = Year, y = n)) + geomline() + thememinimal() + labs(x = NULL, y = NULL, title = "Number of Human Rights Abuses", subtitle = "Pinochet Regime, 1973-1990") + scaley_continuous(breaks = c(0, 500, 1000, 1274)) ```

"Human rights abuses in the Pinochet regime, 1973-1990"

We can also plot the geographical locations of the human rights abuses:

```

Load necessary packages

if (!require("sf")) { install.packages("sf") } if (!require("devtools")) { install.packages("devtools") } devtools::install_github("ropensci/rnaturalearthdata") if (!require("rnaturalearthhires")) { install.packages("rnaturalearthhires", repos = "http://packages.ropensci.org", type = "source") } library(rnaturalearthdata) library(rnaturalearthhires)

Save events

chile <- rnaturalearthhires::countries10 %>% stassf() %>% filter(SOVEREIGNT %in% c("Chile", "Argentina", "Peru", "Paraguay"))

violentevents <- pinochet %>% select(violence, latitude1, longitude1) %>% filter(!is.na(violence), !is.na(latitude1), !is.na(longitude1)) %>% stassf(coords = c("longitude1", "latitude_1"), crs = 5361)

coordsvio <- stcoordinates(violentevents) %>% astibble() violentevents <- bindcols(violentevents, coordsvio)

Create map

ggplot() + geomsf(data = chile) + coordsf(xlim = c(-75.6, -67), ylim = c(-55, -19)) + labs(x = NULL, y = NULL) + geompoint(data = violentevents, aes(x = X, y = Y, colour = violence, fill = violence), shape = 21) + scalecolourmanual(values = c("#042333FF", "#481567FF", "#253582FF", "#2D708EFF", "#29AF7FFF")) + scalefillmanual(values = alpha(c("#042333FF", "#481567FF", "#253582FF", "#2D708EFF", "#29AF7FFF"), .6)) + facetwrap(~violence, nrow = 1) + thememinimal() + theme(strip.text = elementblank()) + theme(legend.position = "bottom", axis.text = elementblank()) + theme(legend.title=element_blank()) ```

"Spatial variation in human rights abuses in the Pinochet regime, 1973-1990"

We believe our data open new topics of research. For instance, researchers can test whether the Pinochet regime has caused attitudinal changes in direct or indirect victims, the relationship between human rights abuses and post-regime levels of interpersonal violence, or investigate the connections between international legitimacy and domestic politics in repressive regimes. These questions are still discussed in the literature and our dataset provides a way to empirically test them.

We hope our dataset is useful for scholars interested in these and other questions, and that the information it contains elicits hypotheses not only about the Pinochet period, but about authoritarian governments more generally.

Contributions and suggestions are always welcome. Feel free to send me an email or to open an issue on GitHub.

Citation

You can cite the manuscript as:

@misc{freire2019pinochet, title={{Deaths and Disappearances in the Pinochet Regime: A New Dataset}}, howpublished = {\url{https://doi.org/10.31235/osf.io/vqnwu}}, publisher={Open Science Framework}, author={Freire, Danilo and Meadowcroft, John and Skarbek, David and Guerrero, Eugenia}, year={2019}, month={May} }

If you use the pinochet package, you can cite it as:

@Manual{freire2019package, title = {pinochet: Packages data about the victims of the Pinochet regime}, author = {Danilo Freire and Lucas Mingardi and Robert McDonnell}, year = {2019}, note = {R package version 0.1.0}, url = {http://github.com/danilofreire/pinochet} }

Owner

  • Name: Danilo Freire
  • Login: danilofreire
  • Kind: user

GitHub Events

Total
  • Watch event: 2
Last Year
  • Watch event: 2

Committers

Last synced: about 3 years ago

All Time
  • Total Commits: 49
  • Total Committers: 2
  • Avg Commits per committer: 24.5
  • Development Distribution Score (DDS): 0.306
Top Committers
Name Email Commits
Danilo Freire d****e@g****m 34
Danilo Freire d****e@u****m 15

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 2
  • Total pull requests: 1
  • Average time to close issues: 19 days
  • Average time to close pull requests: less than a minute
  • Total issue authors: 1
  • Total pull request authors: 1
  • Average comments per issue: 3.5
  • Average comments per pull request: 0.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • diegoquintanav (2)
Pull Request Authors
  • danilofreire (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 162 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 1
  • Total maintainers: 1
cran.r-project.org: pinochet

Data About the Victims of the Pinochet Regime, 1973-1990

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 162 Last month
Rankings
Forks count: 10.1%
Stargazers count: 12.9%
Dependent packages count: 29.8%
Average: 34.7%
Dependent repos count: 35.5%
Downloads: 85.4%
Maintainers (1)
Last synced: 9 months ago