Created
July 31, 2018 09:07
-
-
Save jduckles/8b28d518ce7b701f51736d39a911be37 to your computer and use it in GitHub Desktop.
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(readr) | |
workshops <- read_csv('workshops.csv') | |
svg('workshops.svg') | |
ggplot(workshops, aes(x=date,y=workshops$count)) + geom_line() + ylab("Cumulative Number of Workshops") | |
dev.off() | |
instructors <- read_csv("instructors.csv") | |
svg('instructors.svg') | |
ggplot(instructors, aes(x=date,y=instructors$count)) + geom_line() + ylab("Cumulative Number of Instructors") | |
dev.off() | |
learners <- read_csv("learners.csv") | |
svg('learners.svg') | |
ggplot(learners, aes(x=date,y=learners$count)) + geom_line() + ylab("Cumulative Number of Learners") | |
dev.off() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment