https://github.com/tom-n-walker/uphill-plants-soil-carbon
Raw File
Tip revision: a9e7a872d22a45dbd91bb00751d522812138eefd authored by Tom Walker on 08 February 2022, 15:18:56 UTC
Additional and revised analysis in response to author comments.
Tip revision: a9e7a87
format_relevees.R
################################################################################
#### Project: Lowland plant migrations alpine soil C loss
#### Title:   Function | Compile plant community data
#### Author:  Tom Walker (thomas.walker@usys.ethz.ch)
#### Date:    26 May 2021
#### ---------------------------------------------------------------------------

format_relevees <- function(raw_relevees){
  formatted <- compute_cover(raw_relevees)
  named <- clean_species_names(formatted)
  summarised <- summarise_cover(raw_relevees, named)
}
back to top