rm(list=ls())
library(tidyverse)
library(sf)
library(DT)
if(!file.exists("./Data/DRdata.csv")){
# everything in here is a cbh
allDF <- read_rds("./Data/prepared_cbh_2018_09_04_11_49_50.RDS")
head(allDF)
# looking at this group the DR("DOM") looks like a good candidate
allDF %>%
mutate(has_coords=is.na(longnum)) %>%
group_by(country, has_coords) %>%
summarize(n=n()) %>%
filter(n() == 2)
DF <- filter(allDF, country == "DOM") %>%
as_tibble %>%
mutate(GAUL_CODE=as.numeric(location_code)) %>%
rename(Nid=nid) %>%
left_join(select(read_csv("./id.csv"), Nid, Title), by="Nid") %>%
select(-Nid)
write_csv(DF, "./Data/DRdata.csv")
}
DF <- read_csv("./Data/DRdata.csv", col_types="ccdcidcddccddidcdc")
cat(paste0("Number of Observations: ", sum(DF$N), "\n"))
cat(paste0("Number of Deaths: ", round(sum(DF$died)), "\n"))
cat(paste0("Proportion: ", round(sum(DF$died)/sum(DF$N), 4), "\n"))
admin1Codes <- DF %>%
filter(shapefile == "admin2013_1") %>%
select(location_code) %>%
unique %>%
unlist %>%
unname
# row counts
table(DF$shapefile, useNA="ifany")
# weighted counts
DF %>%
group_by(shapefile, Title) %>%
summarize(personCount=sum(N))
# temporal breakdown
tempDF <- DF %>%
group_by(Title, year) %>%
summarize(personPeriodCount=sum(N), Deaths=sum(round(died))) %>%
as.data.frame
shapeADMIN <- st_read("admin2013_1.shp")
shapeADMINDR <- shapeADMIN[shapeADMIN$GAUL_CODE %in% admin1Codes,]
shapeFiles <- grep("DOM", unique(DF$shapefile), value=T)
shapeList <- c(list(shapeADMINDR), lapply(paste0(shapeFiles, ".shp"), st_read))
names(shapeList) <- c("admin2013_1", shapeFiles)
dataCountList <- lapply(names(shapeList), function(spn){
countDF <- DF %>%
group_by(shapefile, GAUL_CODE) %>%
summarize(obsCount=sum(N)) %>%
filter(shapefile == spn) %>%
ungroup %>%
select(-shapefile)
left_join(shapeList[[spn]], countDF, by="GAUL_CODE") %>%
mutate(set=spn) %>%
select(set, GAUL_CODE, obsCount, geometry)
})
names(dataCountList) <- names(shapeList)
# for right now lets just plot the data that we do have
pointSFDF <- DF %>%
filter(!is.na(longnum)) %>%
st_as_sf(
coords = c("longnum", "latnum"),
crs = "+proj=longlat +datum=WGS84 +no_defs") %>%
st_combine
# No :(
dataGeoPlot <- ggplot(pointSFDF) +
geom_sf(data=shapeADMINDR) +
geom_sf(size=.2, alpha=.3) +
theme_classic() +
ggtitle("Dominican Republic Gelocated Survey Data")
dataAreaPlot <- do.call(rbind, dataCountList) %>%
ggplot(aes(fill=obsCount)) +
geom_sf() +
scale_fill_distiller(palette="Spectral") +
theme_classic() +
facet_wrap(~set, nrow=2) +
ggtitle("Dominican Republic Areal Survey Data")
dataAreaZoomPlot <- do.call(rbind, dataCountList[1:2]) %>%
ggplot(aes(fill=obsCount)) +
geom_sf() +
scale_fill_distiller(palette="Spectral") +
theme_classic() +
facet_wrap(~set, nrow=2) +
ggtitle("Dominican Republic Areal Survey Data")
dataList <- list(
tempDF=tempDF,
dataGeoPlot=dataGeoPlot,
dataAreaPlot=dataAreaPlot,
dataAreaZoomPlot=dataAreaZoomPlot
)
saveRDS(dataList, "./Data/dataList.Rds")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.