Joins

Remember to:

  • display a fully joined version of the Portal data using:
    portal_bigtable <- inner_join(inner_join(surveys, species), plots)

Why use multiple tables

Basic join

species <- read.csv("species.csv")
combined <- inner_join(surveys, species, by = "species_id")
head(combined)

Do Shrub Volume Join.

Multi-table join

portal_full <- inner_join(combined, plots, by = "plot_id")
head(portal_full)