├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── apodos.R ├── centros_clandestinos_detencion.R ├── parque_de_la_memoria.R ├── victimas_accionar_represivo_ilegal.R └── victimas_accionar_represivo_ilegal_sin_denuncia_formal.R ├── README.Rmd ├── README.html ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── apodos.R ├── centros_clandestinos_detencion.R ├── centros_clandestinos_detencion_georef.R ├── parque_de_la_memoria.R ├── victimas_accionar_represivo_ilegal.R └── victimas_accionar_represivo_ilegal_sin_denuncia_formal.R ├── data ├── apodos.rda ├── centros_clandestinos_detencion.rda ├── parque_de_la_memoria.rda ├── victimas_accionar_represivo_ilegal.rda └── victimas_accionar_represivo_ilegal_sin_denuncia_formal.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── articles │ ├── Carta_Duhalde.html │ ├── index.html │ ├── vignetta.html │ ├── vignetta_files │ │ ├── Proj4Leaflet-1.0.1 │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ ├── figure-html │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-2-2.png │ │ │ └── unnamed-chunk-3-1.png │ │ ├── htmlwidgets-1.3 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ │ └── jquery.min.js │ │ ├── leaflet-1.3.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.2 │ │ │ └── leaflet.js │ │ ├── leaflet-markercluster-1.0.5 │ │ │ ├── MIT-LICENCE.txt │ │ │ ├── MarkerCluster.Default.css │ │ │ ├── MarkerCluster.css │ │ │ ├── leaflet.markercluster.freezable.js │ │ │ ├── leaflet.markercluster.js │ │ │ ├── leaflet.markercluster.layersupport.js │ │ │ └── package.json │ │ ├── leafletfix-1.0.0 │ │ │ └── leafletfix.css │ │ └── rstudio_leaflet-1.3.1 │ │ │ ├── images │ │ │ └── 1px.png │ │ │ └── rstudio_leaflet.css │ ├── vignette.html │ └── vignette_files │ │ ├── Proj4Leaflet-1.0.1 │ │ └── proj4leaflet.js │ │ ├── accessible-code-block-0.0.1 │ │ └── empty-anchor.js │ │ ├── figure-html │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-2-2.png │ │ └── unnamed-chunk-3-1.png │ │ ├── htmlwidgets-1.3 │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.3 │ │ └── htmlwidgets.js │ │ ├── jquery-1.12.4 │ │ └── jquery.min.js │ │ ├── leaflet-1.3.1 │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.2 │ │ └── leaflet.js │ │ ├── leaflet-binding-2.0.4.1 │ │ └── leaflet.js │ │ ├── leaflet-markercluster-1.0.5 │ │ ├── MIT-LICENCE.txt │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ ├── leaflet.markercluster.freezable.js │ │ ├── leaflet.markercluster.js │ │ ├── leaflet.markercluster.layersupport.js │ │ └── package.json │ │ ├── leafletfix-1.0.0 │ │ └── leafletfix.css │ │ ├── proj4-2.6.2 │ │ └── proj4.min.js │ │ └── rstudio_leaflet-1.3.1 │ │ ├── images │ │ └── 1px.png │ │ └── rstudio_leaflet.css ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── apodos.html │ ├── centros_clandestinos_detencion.html │ ├── figures │ │ └── README-example-1.png │ ├── index.html │ ├── parque_de_la_memoria.html │ ├── victimas_accionar_represivo_ilegal.html │ └── victimas_accionar_represivo_ilegal_sin_denuncia_formal.html └── sitemap.xml ├── extdata ├── 4._anexo_iii_ndice_de_apodos-investigacion_ruvte-ilid.pdf ├── 6._anexo_v_listado_de_ccd-investigacion_ruvte-ilid.pdf ├── apodos.csv ├── centros_clandestinos_detencion.csv ├── links_intermedios_pdlm.rds ├── paginas_finales_pdlm.rds ├── parque_de_la_memoria.json ├── victimas-accionar-represivo-ilegal-sin-denuncia-formal.csv └── victimas-accionar-represivo-ilegal.csv ├── man ├── apodos.Rd ├── centros_clandestinos_detencion.Rd ├── figures │ └── README-example-1.png ├── parque_de_la_memoria.Rd ├── victimas_accionar_represivo_ilegal.Rd └── victimas_accionar_represivo_ilegal_sin_denuncia_formal.Rd ├── presentes.Rproj ├── tests ├── testthat.R └── testthat │ ├── apodos.rds │ ├── centros_clandestinos_detencion.rds │ ├── test-presentes.R │ ├── victimas_accionar_represivo_ilegal.rds │ └── victimas_accionar_represivo_ilegal_sin_denuncia_formal.rds └── vignettes ├── .gitignore └── vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Diego Kozlowski 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/apodos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/R/apodos.R -------------------------------------------------------------------------------- /R/centros_clandestinos_detencion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/R/centros_clandestinos_detencion.R -------------------------------------------------------------------------------- /R/parque_de_la_memoria.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/R/parque_de_la_memoria.R -------------------------------------------------------------------------------- /R/victimas_accionar_represivo_ilegal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/R/victimas_accionar_represivo_ilegal.R -------------------------------------------------------------------------------- /R/victimas_accionar_represivo_ilegal_sin_denuncia_formal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/R/victimas_accionar_represivo_ilegal_sin_denuncia_formal.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/apodos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data-raw/apodos.R -------------------------------------------------------------------------------- /data-raw/centros_clandestinos_detencion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data-raw/centros_clandestinos_detencion.R -------------------------------------------------------------------------------- /data-raw/centros_clandestinos_detencion_georef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data-raw/centros_clandestinos_detencion_georef.R -------------------------------------------------------------------------------- /data-raw/parque_de_la_memoria.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data-raw/parque_de_la_memoria.R -------------------------------------------------------------------------------- /data-raw/victimas_accionar_represivo_ilegal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data-raw/victimas_accionar_represivo_ilegal.R -------------------------------------------------------------------------------- /data-raw/victimas_accionar_represivo_ilegal_sin_denuncia_formal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data-raw/victimas_accionar_represivo_ilegal_sin_denuncia_formal.R -------------------------------------------------------------------------------- /data/apodos.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data/apodos.rda -------------------------------------------------------------------------------- /data/centros_clandestinos_detencion.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data/centros_clandestinos_detencion.rda -------------------------------------------------------------------------------- /data/parque_de_la_memoria.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data/parque_de_la_memoria.rda -------------------------------------------------------------------------------- /data/victimas_accionar_represivo_ilegal.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data/victimas_accionar_represivo_ilegal.rda -------------------------------------------------------------------------------- /data/victimas_accionar_represivo_ilegal_sin_denuncia_formal.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/data/victimas_accionar_represivo_ilegal_sin_denuncia_formal.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/articles/Carta_Duhalde.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/Carta_Duhalde.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/vignetta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta.html -------------------------------------------------------------------------------- /docs/articles/vignetta_files/Proj4Leaflet-1.0.1/proj4-compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/Proj4Leaflet-1.0.1/proj4-compressed.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/Proj4Leaflet-1.0.1/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/Proj4Leaflet-1.0.1/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/figure-html/unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/figure-html/unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-1.3.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-1.3.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-binding-2.0.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-binding-2.0.2/leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/MIT-LICENCE.txt -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/MarkerCluster.Default.css -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/MarkerCluster.css -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/leaflet.markercluster.freezable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/leaflet.markercluster.freezable.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/leaflet.markercluster.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/leaflet.markercluster.layersupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/leaflet.markercluster.layersupport.js -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leaflet-markercluster-1.0.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leaflet-markercluster-1.0.5/package.json -------------------------------------------------------------------------------- /docs/articles/vignetta_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/vignetta_files/rstudio_leaflet-1.3.1/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/rstudio_leaflet-1.3.1/images/1px.png -------------------------------------------------------------------------------- /docs/articles/vignetta_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignetta_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/articles/vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette.html -------------------------------------------------------------------------------- /docs/articles/vignette_files/Proj4Leaflet-1.0.1/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/Proj4Leaflet-1.0.1/proj4leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/figure-html/unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/figure-html/unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-1.3.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-1.3.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-binding-2.0.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-binding-2.0.2/leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-binding-2.0.4.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-binding-2.0.4.1/leaflet.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/MIT-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/MIT-LICENCE.txt -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/MarkerCluster.Default.css -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/MarkerCluster.css -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/leaflet.markercluster.freezable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/leaflet.markercluster.freezable.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/leaflet.markercluster.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/leaflet.markercluster.layersupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/leaflet.markercluster.layersupport.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/leaflet-markercluster-1.0.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leaflet-markercluster-1.0.5/package.json -------------------------------------------------------------------------------- /docs/articles/vignette_files/leafletfix-1.0.0/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/leafletfix-1.0.0/leafletfix.css -------------------------------------------------------------------------------- /docs/articles/vignette_files/proj4-2.6.2/proj4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/proj4-2.6.2/proj4.min.js -------------------------------------------------------------------------------- /docs/articles/vignette_files/rstudio_leaflet-1.3.1/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/rstudio_leaflet-1.3.1/images/1px.png -------------------------------------------------------------------------------- /docs/articles/vignette_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/articles/vignette_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/apodos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/apodos.html -------------------------------------------------------------------------------- /docs/reference/centros_clandestinos_detencion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/centros_clandestinos_detencion.html -------------------------------------------------------------------------------- /docs/reference/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/figures/README-example-1.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/parque_de_la_memoria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/parque_de_la_memoria.html -------------------------------------------------------------------------------- /docs/reference/victimas_accionar_represivo_ilegal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/victimas_accionar_represivo_ilegal.html -------------------------------------------------------------------------------- /docs/reference/victimas_accionar_represivo_ilegal_sin_denuncia_formal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/reference/victimas_accionar_represivo_ilegal_sin_denuncia_formal.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /extdata/4._anexo_iii_ndice_de_apodos-investigacion_ruvte-ilid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/4._anexo_iii_ndice_de_apodos-investigacion_ruvte-ilid.pdf -------------------------------------------------------------------------------- /extdata/6._anexo_v_listado_de_ccd-investigacion_ruvte-ilid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/6._anexo_v_listado_de_ccd-investigacion_ruvte-ilid.pdf -------------------------------------------------------------------------------- /extdata/apodos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/apodos.csv -------------------------------------------------------------------------------- /extdata/centros_clandestinos_detencion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/centros_clandestinos_detencion.csv -------------------------------------------------------------------------------- /extdata/links_intermedios_pdlm.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/links_intermedios_pdlm.rds -------------------------------------------------------------------------------- /extdata/paginas_finales_pdlm.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/paginas_finales_pdlm.rds -------------------------------------------------------------------------------- /extdata/parque_de_la_memoria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/parque_de_la_memoria.json -------------------------------------------------------------------------------- /extdata/victimas-accionar-represivo-ilegal-sin-denuncia-formal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/victimas-accionar-represivo-ilegal-sin-denuncia-formal.csv -------------------------------------------------------------------------------- /extdata/victimas-accionar-represivo-ilegal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/extdata/victimas-accionar-represivo-ilegal.csv -------------------------------------------------------------------------------- /man/apodos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/man/apodos.Rd -------------------------------------------------------------------------------- /man/centros_clandestinos_detencion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/man/centros_clandestinos_detencion.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/parque_de_la_memoria.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/man/parque_de_la_memoria.Rd -------------------------------------------------------------------------------- /man/victimas_accionar_represivo_ilegal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/man/victimas_accionar_represivo_ilegal.Rd -------------------------------------------------------------------------------- /man/victimas_accionar_represivo_ilegal_sin_denuncia_formal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/man/victimas_accionar_represivo_ilegal_sin_denuncia_formal.Rd -------------------------------------------------------------------------------- /presentes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/presentes.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/apodos.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/tests/testthat/apodos.rds -------------------------------------------------------------------------------- /tests/testthat/centros_clandestinos_detencion.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/tests/testthat/centros_clandestinos_detencion.rds -------------------------------------------------------------------------------- /tests/testthat/test-presentes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/tests/testthat/test-presentes.R -------------------------------------------------------------------------------- /tests/testthat/victimas_accionar_represivo_ilegal.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/tests/testthat/victimas_accionar_represivo_ilegal.rds -------------------------------------------------------------------------------- /tests/testthat/victimas_accionar_represivo_ilegal_sin_denuncia_formal.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/tests/testthat/victimas_accionar_represivo_ilegal_sin_denuncia_formal.rds -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoKoz/presentes/HEAD/vignettes/vignette.Rmd --------------------------------------------------------------------------------