This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(ggpubr) | |
library(tsibble) | |
library(fable) | |
library(ggpmisc) | |
library(ggrepel) | |
library(scales) | |
sf <- 2 | |
width <- 1200 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(data.table) | |
library(ggplot2) | |
sf <- 2 | |
width <- 900 * sf | |
height <- 450 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) | |
# Load data | |
s <- fread( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(data.table) | |
library(ggplot2) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) | |
# All potential vaccine related ICD10 codes | |
elevated_icd10 <- c( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(tidyr) | |
library(ggplot2) | |
library(dplyr) | |
library(fable) | |
library(tsibble) | |
sf <- 2 | |
width <- 900 * sf | |
height <- 450 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(scales) | |
library(ggrepel) | |
library(ggpubr) | |
library(ggpmisc) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(GGally) | |
sf <- 2 | |
width <- 900 * sf | |
height <- 450 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) | |
source(paste0( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readr) | |
library(scales) | |
library(ggpubr) | |
library(ggpmisc) | |
library(ggrepel) | |
source(paste0( | |
"https://gist.githubusercontent.com/USMortality/", | |
"cf0dc23d0d5ca609539fe11c9c089fcc/raw/asmr_country_dataset.r" | |
)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tigris) | |
library(ggplot2) | |
library(dplyr) | |
library(readxl) | |
library(sf) | |
sf <- 2 | |
width <- 1920 * sf | |
height <- 1080 * sf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(tsibble) | |
library(ggrepel) | |
library(quantmod) | |
sf <- 2 | |
width <- 600 * sf | |
height <- 335 * sf | |
options(vsc.dev.args = list(width = width, height = height, res = 72 * sf)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Require IP argument or environment variable | |
IP="${1:-${IP}}" | |
if [ -z "$IP" ]; then | |
echo "❌ Error: IP is required." | |
echo "Usage: IP=1.2.3.4 ./deploy.sh" | |
echo " or: ./deploy.sh 1.2.3.4" | |
exit 1 |
NewerOlder