View source: R/Split_CentCount.R
Split_CentCount | R Documentation |
Splits and summarises cent count for apportioned and unapportioned species
Split_CentCount(CentCount, Behaviour = c("Sitting", "Flying", "All"))
CentCount |
the CentCount as an sf object |
Behaviour |
One of "Sitting", "Flying" or "All". The behaviour associated with the CentCount to be summarized. |
A list of size = 2. Unapportioned species counts and apportioned counts
All <- sf::st_read("D:/TEMP/Zone85_M01_S02_D01_21_Output.shp")
CentOut_All <- Split_CentCount(CentCount=All,Behaviour="All")
Flying <- sf::st_read("D:/TEMP/Zone85_M01_S02_D01_21_Flying.shp")
CentOut_Flying <- Split_CentCount(CentCount=Flying,Behaviour="Flying")
Sitting <- sf::st_read("D:/TEMP/Zone85_M01_S02_D01_21_Sitting.shp")
CentOut_Sitting <- Split_CentCount(CentCount=Sitting,Behaviour="Sitting")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.