You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x = unlist(str_extract_all(unique(df_bl$eea_cell_code),
pattern = "(?<=E)[0-9\\-]+"
)),
y = unlist(str_extract_all(unique(df_bl$eea_cell_code),
pattern = "(?<=N)[0-9\\-]+"
))
) %>%
mutate_all(as.integer)
)
```
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 49146: Existing data.
• Size 49147: Column `y`.
ℹ Only values of size one are recycled.
Run `rlang::last_trace()` to see where the error occurred.
The text was updated successfully, but these errors were encountered:
In the current version of the baseline (classes cube on zenodo) there are some eea_cell_codes that got corrupted, For example 1kmE-1472N1205.
This issue causes this part of the code to produce the error below:
indicators/src/05_occurrence_indicators_preprocessing.Rmd
Lines 349 to 364 in 9e9668d
The text was updated successfully, but these errors were encountered: