dailyInterpretation | R Documentation |
Uses linear interpretation to calculate hypothetical abundances for all days during montoring perod.
dailyInterpretation(data, taxa = "Genus")
data |
(Required) A dataframe (of type Zooplankton or Phytoplankton?) |
taxa |
(Optional, default=Genus") A character string refering to the taxa-specific column in the dataframe |
Dataframe, with year summarized and daily abundances interpreted.
data <- getSHARK("Phytoplankton") %>% addDyntaxa() %>% annotateSHARK() %>% filter(Station == "BY31 LANDSORTSDJ", Year > 2006, unit == "mm3/l", Phylum %in% c( "Miozoa", "Bacillariophyta", "Ciliophora", "Haptophyta", "Chlorophyta", "Cyanobacteria" )) %>% group_by(SDATE, Phylum, Depth) %>% summarize(Value=sum(Value)) %>% group_by(SDATE, Phylum) %>% summarize(Value=mean(Value)) %>% dailyInterpretation(taxa="Phylum")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.