I just want to remove a row based on a column value, but have not been able to do it for a "list" typeof. I am showing you the tibble that is build on a shapefile for the classification.
The geometry column is also a bit different in the R dataframe. The geometry column should read with a c (as in vector). i.e. c(-123.1166, 44.67333). So the EMPTY actually reads c(NaN, NaN).
I was thinking about turning the typeof "list" into a "string" and removing it like that... But I don't know how o do it.
# A tibble: 102 x 3
Class Names2 geometry
<dbl> <fct> <POINT [°]>
1 1 Hole (-123.1166 44.67333)
2 1 Hole (-123.1166 44.67333)
3 1 Hole (-123.1166 44.67332)
4 1 Hole (-123.1167 44.6734)
5 1 Hole (-123.1167 44.6734)
6 1 Hole (-123.1166 44.67344)
7 1 Hole (-123.1165 44.67358)
8 1 Hole EMPTY
9 1 Hole (-123.1167 44.67367)
10 1 Hole (-123.1167 44.67367)
# ... with 92 more rows