Open kathyle9 opened 2 years ago
Hi Kathy - your answer to the first question is excellent, but I can't read your README for the second question since it's still an Rmd file and needs to be rendered in plain markdown! To do this, knit your README.Rmd, push the resulting README.md file to github, and link back to your repository.
Why should I use it?
How do I use it? First, there is a cheat sheet that demonstrates basic usage and lists many of the functions people typically use. Second, there is a code example:
library(ggplot2)
ggplot(mpg, aes(displ, hwy, colour = class)) + geom_point()
How do I get it?
install.packages("tidyverse")
orinstall.packages("ggplot2")
ordevtools::install_github("tidyverse/ggplot2")