Skip to content

Commit

Permalink
Update aggr_RN.R
Browse files Browse the repository at this point in the history
I have canceled the removal of "Open" from the recruit species (line 44) because it gives problems when transforming the RN to matrix (since the number of rows and columns differ)
  • Loading branch information
jmalcan authored Jul 22, 2024
1 parent f32f4da commit 1ce20bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/aggr_RN.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ aggr_RN <- function(raw_RN) {
RN[is.na(RN)] <- 0
RN$Canopy <- as.character(RN$Canopy)
RN$Recruit <- as.character(RN$Recruit)
RN <- RN[which(RN$Recruit!="Open"),] # Remove Open from the Recruit species
# RN <- RN[which(RN$Recruit!="Open"),] # Remove Open from the Recruit species
return(RN)

}

0 comments on commit 1ce20bb

Please sign in to comment.