start_here.R

#load packages
library("tidyverse")
library("DBI")# also needs RSQLite installed




## ---- load_community

#make database connection
con <- dbConnect(RSQLite::SQLite(), "database/seedclim.sqlite")

#load cover data and metadata
#cover
source("R/importSource/loadCover.r")

#subturf frequencies
source("R/importSource/loadSubplotfreq.r")

#get taxonomy table
taxa <- tbl(con, "taxon") %>%
  collect()
Between-the-Fjords/seedclim-data documentation built on March 6, 2023, 7:53 a.m.