https://github.com/favstats/wtm_ky
Targeting Dashboard: Cayman Islands
https://github.com/favstats/wtm_ky
Last synced: 3 months ago
JSON representation
Targeting Dashboard: Cayman Islands
- Host: GitHub
- URL: https://github.com/favstats/wtm_ky
- Owner: favstats
- Created: 2023-12-07T22:55:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T22:32:25.000Z (about 2 years ago)
- Last Synced: 2024-04-14T01:08:18.891Z (about 2 years ago)
- Language: HTML
- Homepage: https://favstats.github.io/wtm_ky/
- Size: 47.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---
# Targeting Dashboard
```{r, echo=F}
library(tidyverse)
days30 <- readRDS("data/election_dat30.rds")
days7 <- readRDS("data/election_dat7.rds")
```
## Meta
```{r, echo=F}
meta <- tibble("30 Days Window" = na.omit(days30$ds)[1],
"7 Days Window" = na.omit(days7$ds)[1]) %>%
t() %>%
as.data.frame() %>%
rownames_to_column() %>%
set_names(c("Data", "Latest")) %>%
mutate(Latest = lubridate::ymd(Latest)-1)
meta %>% knitr::kable()
```