From 04308f824c53ed048e2040d2cd676c3cba8b00f3 Mon Sep 17 00:00:00 2001 From: silasprincipe <53846571+silasprincipe@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:25:02 +0200 Subject: [PATCH] Update notebook --- notebooks/R/environmental_data_for_occurrences.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/R/environmental_data_for_occurrences.qmd b/notebooks/R/environmental_data_for_occurrences.qmd index 625a052..a642b81 100644 --- a/notebooks/R/environmental_data_for_occurrences.qmd +++ b/notebooks/R/environmental_data_for_occurrences.qmd @@ -179,7 +179,7 @@ As you can see, it extracted the environmental infromation for all points. We ca summary(extracted_data) ``` -Note that we have `r sum(is.na(extracted_data[,1]))` NA points, i.e. with no information. Those points are probably on land. You may chose to remove those or you can find the nearest valid point. In our case we will simply remove them. +Note that we have some NA points, i.e. with no information. Those points are probably on land. You may chose to remove those or you can find the nearest valid point. In our case we will simply remove them. ```{r} actiniaria_vec_filt <- cbind(actiniaria_vec_filt, extracted_data)