Closed fmsabatini closed 8 months ago
I think the problem happens in the section "### Abundance and cover data" of the code, specifically when joining back DT_raw onto DT2.oa... DT_raw has some duplicates that get transferred to DT2.oa!!!
started branch FixDuplicatedSpeciesCWM to fix
There are 119 plots with the sum of their relative cover being greater than 1
DT2.oa %>% group_by(PlotObservationID) %>% summarize(totcover=sum(Relative_cover)) %>% filter(totcover>1.0001)
I believe this is due to replicated species names in the these plots, but further checking is needed