Created
March 30, 2020 20:31
-
-
Save jeremyyeo/f9482e87adf9a30ae1f00ecdaa67ad6a to your computer and use it in GitHub Desktop.
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) | |
| library(dplyr) | |
| library(readxl) | |
| my_data <- read_excel("Downloads/File.xls") # Read excel file. | |
| iris %>% | |
| ggplot(aes(x = Sepal.Length, y = Sepal.Width)) + | |
| facet_grid(Species ~ .) + | |
| geom_line() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment