Skip to content

Commit

Permalink
Update aggr_RN.R
Browse files Browse the repository at this point in the history
Ya he dejado la función como estaba. Seguiré intentando resolver el problema en mi ordenador
  • Loading branch information
jmalcan authored Jul 22, 2024
1 parent 1ce20bb commit 47b0702
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)

}

3 comments on commit 47b0702

@Pakillo
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hola @jmalcan

Si quieres se puede quitar Open. El fallo que ha dado es de los tests que comprueban que el resultado no cambia. Obviamente en este caso sí cambia. Pero puedo actualizar el test quitando Open si quieres. Ya me dices

@jmalcan
Copy link
Collaborator Author

@jmalcan jmalcan commented on 47b0702 Jul 22, 2024 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Pakillo
Copy link
Member

@Pakillo Pakillo commented on 47b0702 Jul 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vale, ok. Ten en cuenta que si todas las funciones tienen tests, se puede comprobar automáticamente si ese cambio de quitar Open rompe algo por otro lado. Eso es algo fundamental en ingeniería de software. Pero está bien comprobar de manera manual y homogeneizar todo.

Para editar, como prefieras, puedes editar directamente el código en github (usando el lápiz de edit y luego hacer commit), o en tu ordenador y luego subir la versión actualizada de la función

Please sign in to comment.