knitr::opts_chunk$set(echo = TRUE)

Sept. 23, 2020

Goal: Plot number of specimens by age.

Worked:

ant_data <-  read_csv("wright/data/FossilAnts.csv")
sepped <- ant_data %>%
  separate(min_mx, c("min_age", "max_age"), "_")

ggplot(sepped) + geom_bar(aes(y = min_age))

Did Not Work:

October 5

Trying revision management for the first time.

-[ x ] First push worked

summary(cars)

Including Plots

You can also embed plots, for example:

plot(pressure)

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.



jailagolden/package documentation built on Jan. 1, 2021, 4:26 a.m.