Skip to content

Commit ff78234

Browse files
committed
Predict_Maps:: Fix bug
1 parent 5e443aa commit ff78234

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/Mod_Predict_Maps.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ Predict_Maps <- function(
735735
tibble::tibble() %>%
736736
sf::st_as_sf(remove = FALSE, coords = c("x", "y"), crs = 3035) %>%
737737
sf::st_join(Model_Coords) %>%
738-
tidyr::replace_na(list(Train = FALSE))
738+
tidyr::replace_na(list(Train = FALSE)) %>%
739739
dplyr::filter(Train == FALSE)
740740

741741
Test_XY <- sf::st_drop_geometry(Predict_DF_Test[, c("x", "y")])

0 commit comments

Comments
 (0)