This file contains 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(lubridate) | |
library(forcats) | |
first_date <- "2024-09-01" # Should work well for any date | |
first_date <- ymd(first_date) | |
dates <- tibble(date = first_date + days(-13:372)) %>% | |
mutate(dow = weekdays(date)) | |
dates <- dates %>% |
This file contains 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(colourlovers) | |
treatment_colors <- swatch(clpalette("1473"))[[1]] | |
sim_function <- function( | |
n_population = 10000, | |
n_days = 100, | |
time_to_quarantine = 14, | |
n_encounters = 50, | |
transmission_probability = 0.05, |
This file contains 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
my_function <- function(x){ # This is a function that sometimes fails | |
doesItWork <- rnorm(1) > x | |
if(doesItWork){ | |
return("You got a result") | |
} else { | |
stop("Did not work") | |
} | |
} | |
function_wrapper <- function(y){ # This function tries the first one until it works |
This file contains 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(ggplot2) | |
new_theme_empty <- theme_bw() | |
new_theme_empty$line <- element_blank() | |
new_theme_empty$rect <- element_blank() | |
new_theme_empty$strip.text <- element_blank() | |
new_theme_empty$axis.text <- element_blank() | |
nCards <- 30 | |
ruleText <- c("Look for these on the field, in the stands, or in the commercials.\n\"\" indicate that you should listen for the broadcast team to say this phrase.") |
This file contains 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(rgdal) | |
library(maps) | |
library(viridis) | |
library(extrafont) | |
font_import(pattern = "GIL", prompt = FALSE) # Import Gill family | |
loadfonts(device="win") # Load them all | |
fonts() # See what fonts are available | |
library(tidyverse) | |
#devtools::install_github("hadley/ggplot2", force = TRUE) | |
1 |
This file contains 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(dplyr) | |
library(tidyr) | |
myDF <- data.frame(A = sample(LETTERS[1:4], 100, replace = TRUE), | |
B = sample(letters[5:9], 100, replace = TRUE), | |
C = rnorm(100)) | |
summaryDF <- myDF %>% group_by(A, B) %>% dplyr::summarise(meanC = mean(C)) | |
summaryDF %>% spread(B, meanC) # Error: index out of bounds | |
summaryDF %>% ungroup() %>% spread(B, meanC) # Works |
This file contains 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
rationalFractionApproximator <- function(dec, maxDenom = 1000){ | |
denomSeq <- 1:maxDenom | |
impliedNumerator <- dec * denomSeq | |
roundNumerator <- round(impliedNumerator) | |
absError <- abs(roundNumerator / denomSeq - dec) | |
minMinimand <- which.min(absError * denomSeq) | |
minDenom <- denomSeq[minMinimand] | |
minNumer <- roundNumerator[minMinimand] | |
line2 <- paste0(minNumer, " / ", minDenom, " = ", minNumer / minDenom) |
This file contains 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
# Sunlight Foundation style guide: http://design.sunlightlabs.com/projects/Sunlight-StyleGuide-DataViz.pdf | |
# Ram's original Wes Anderson code: https://github.com/karthik/wesanderson/blob/master/R/colors.R | |
#' A Wes Anderson palette generator | |
#' | |
#' These are a handful of color palettes from Wes Anderson movies. | |
#' @param n Number of colors desired. Unfortunately most palettes now only have 4 or 5 colors. But hopefully we'll add more palettes soon. All color schemes are derived from the most excellent Tumblr blog: \href{http://wesandersonpalettes.tumblr.com/}{Wes Anderson Palettes} | |
#' @param name Name of desired palette. Choices are: \code{GrandBudapest}, \code{Moonrise1}, \code{Royal1}, \code{Moonrise2}, \code{Cavalcanti}, \code{Royal2}, \code{GrandBudapest2}, \code{Moonrise3}, \code{Chevalier}, \code{BottleRocket}, \code{darjeeling}, \code{darjeeling2} | |
#' @param type Set to continuous if you require a gradient of colors similar to how heat map works. | |
#' @export |
This file contains 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
# installing/loading the latest installr package: | |
install.packages("installr"); require(installr) #load / install+load installr | |
updateR() | |
# Then just follow the prompts... |
This file contains 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
require(extrafont) | |
require(ggplot2) | |
font_import(pattern = "GIL", prompt = FALSE) # Import Gill family | |
loadfonts(device="win") # Load them all | |
fonts() # See what fonts are available | |
zp1 <- ggplot(data = iris, | |
aes(x = Sepal.Length, y = Sepal.Width, label = Species)) | |
zp1 <- zp1 + geom_text(family = "Gill Sans MT") | |
zp1 <- zp1 + theme(text=element_text(family="Gill Sans Ultra Bold")) |
NewerOlder