Skip to content

Instantly share code, notes, and snippets.

@drjwbaker
Created July 24, 2015 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drjwbaker/c1648ac9fd75699cfd50 to your computer and use it in GitHub Desktop.
Save drjwbaker/c1648ac9fd75699cfd50 to your computer and use it in GitHub Desktop.
(Figure 3) Code, control, and making the argument in the Humanities
#loadpackages
setwd("/home/james/Documents/2015-07_BM-R/derived_data")
library(lubridate)
library(dplyr, warn.conflicts = FALSE)
library(tidyr, warn.conflicts = FALSE)
library(ggplot2)
#read data from csv
names <- read.csv("BM.csv")
#plot data
ggplot(names, aes(x = N)) +
ggtitle("A Facet Grid (log(x), by DECADE)") +
geom_histogram() +
scale_x_log10() +
facet_grid(DECADE ~ .)
#save data to file
setwd("/home/james/Documents/2015-07_BM-R/viz")
ggsave("BM_decade-grid-logx.png", width = 7, height = 7)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment