Porting Jon Schwabish's World Tile Grid Map to ggplot2.
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(lubridate) | |
library(scales) | |
df <- tibble( | |
date = seq.Date(from=ymd("2019-01-01"),to=ymd("2019-12-31"),by="day"), | |
wkdy = wday(date,label=T), | |
mo = month(date,label=T), | |
mo.num = month(date,label=F), | |
day = day(date) |
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
##################################################### | |
##################################################### | |
### R Script for Metamodeling and Rule Extraction ### | |
##################################################### | |
##################################################### | |
############################# | |
### Step I: Load Packages ### | |
############################# |
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(ggplot2) | |
# dput(ls(pattern = "theme",package:ggplot2)) | |
defaults <- c("theme_bw", "theme_classic", "theme_dark", | |
"theme_grey", "theme_light", "theme_linedraw", | |
"theme_minimal", "theme_void") | |
library(ggthemes) | |
# dput(ls(pattern = "theme",package:ggthemes)) | |
addons <- c("theme_base", "theme_calc", "theme_economist", | |
"theme_economist_white", "theme_excel", "theme_few", "theme_fivethirtyeight", | |
"theme_foundation", "theme_gdocs", "theme_hc", "theme_igray", |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
NewerOlder