iris

-homework 3

iris dataset| ErinTracy

Column 1

Width

ggplot(iris, aes(Petal.Width)) + geom_histogram(binwidth = 0.1)

length

ggplot(iris, aes(Petal.Length)) + geom_bar()

Species

ggplot(iris, aes(Species)) + geom_bar()

Column 2

The largest iris

iris %>% 
  arrange(desc(Petal.Length)) %>% 
  head(100) %>% 
  select(Petal.Length, Petal.Width, Species) %>% 
  DT::datatable()

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-NC 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".