O pacote ispdata permite acessar os dados do Instituto de Segurança Pública (ISP) do Rio de Janeiro por meio do R.
Para instalar via CRAN:
install.packages("ispdata")
library(ispdata)
Para instalar a versão em desenvolvimento(GitHub):
install.packages("devtools")
::install_github("igorlaltuf/ispdata")
devtoolslibrary(ispdata)
Acessar estatísticas de segurança pública por área de delegacia de polícia:
<- monthly_stats(by = 'cisp') df
Carregar o dicionário de dados da tabela acima:
<- monthly_stats_dictionary(by = 'cisp') data_dictionary
Acessar dados sobre feminicídio:
<- crimes_against_life(type = "femicide") df
Ver estatísticas sobre apreensão de armas:
<- gun_seizure(gun_type = "firearms") df
Carregar estatísticas de segurança pública em área de UPPs:
<- upp_data(data = "stats") df
Dados espaciais vetoriais dos limites das UPPs:
<- spatial_upp shape
Exemplo: Taxa de homicídios por intervenção policial em 2020 na cidade do Rio de Janeiro. Dados por Área Integrada de Segurança Pública (AISP).
library(ispdata)
library(dplyr)
library(ggplot2)
library(sf)
<- population(data = 'cisp_yearly')
pop
<- monthly_stats(by = 'cisp') |>
df left_join(spatial_cisp, by = c("cisp" = "dp", "aisp")) |>
filter(aisp %in% c(27, 40, 31, 14, 18, 41, 9, 6, 23, 3, 16, 22, 4, 17, 19, 2),
== '2020') |>
ano group_by(ano, cisp, geometry) |>
summarise(hom_por_interv_policial = sum(hom_por_interv_policial)) |>
left_join(pop, by = c("cisp" = "circ", "ano")) |>
mutate(v_100k_hab = hom_por_interv_policial/pop * 100000) |>
st_as_sf()
ggplot() +
geom_sf(data = df, mapping = aes(fill = v_100k_hab), color = NA) +
theme_classic() +
scale_fill_viridis_c(name = "Quantidade para\ncada 100 mil hab") +
labs(title = "",
subtitle = "") +
coord_sf() +
::annotation_scale() +
ggspatial::annotation_north_arrow(location = "br") ggspatial
Para citar em trabalhos, use:
citation('ispdata')
#>
#> To cite package 'ispdata' in publications use:
#>
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Misc{,
#> title = {ISPDATA: the package to access public security data from the State of Rio de Janeiro.},
#> author = {Igor Laltuf},
#> year = {2023},
#> url = {https://github.com/igorlaltuf/ispdata},
#> }