Questions

knitr::opts_chunk$set(echo = TRUE, warning = FALSE, message = FALSE)
library(tidyverse)
library(tidyices)
species <- read_rds("data/species.rds")
hl <- 
  read_rds("data-raw/datras/ns-ibts_raw.rds")$hl %>% 
  as_tibble() %>% 
  rename_all(. , tolower) %>% 
  id_unite() %>% 
  left_join(species)

If lngtclass is undefined, does that mean that species in question only counted at that station?

d <- 
  hl %>% 
  filter(is.na(lngtclass)) %>% 
  select(id, latin, sex:hlnoatlngt)
d %>% 
  glimpse()


einarhjorleifsson/datrasdoodle documentation built on May 27, 2019, 2:09 p.m.