knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(alohakez)
library(tidyverse)

Make a subset of cutthroats only

cutthroat <- alohakez::and_vertebrates %>% 
  filter(SPECIES == "ONCL")

Make a cool graph

ggplot(data = cutthroat, aes(x = LENGTH1, y = WEIGHT)) +
  geom_point()


karenezhao/alohakez documentation built on June 27, 2021, 10:22 p.m.