Skip to content

Instantly share code, notes, and snippets.

@jeremyyeo
Created March 30, 2020 20:31
Show Gist options
  • Select an option

  • Save jeremyyeo/f9482e87adf9a30ae1f00ecdaa67ad6a to your computer and use it in GitHub Desktop.

Select an option

Save jeremyyeo/f9482e87adf9a30ae1f00ecdaa67ad6a to your computer and use it in GitHub Desktop.
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