I am trying to subset a spatial point data frame using the function subset as follows:
data(puechabonsp)
Chou.subset <- subset(puechabonsp,puechabonsp$relocs$Name=="Chou")
I was expecting to get all rows of the individual named "Chou" but instead, I got an empty list. Obviously I am doing it wrong and would apprentice some help.
Thanks! Idan