Does anyone know what a slot extraction
is? I'm trying to follow a script and a part of it is:
data <- data.frame
names(data)
unique <- unique(data@data$binomial)
Binomial is the column that I need to use in the case of species names. A species in this case may have more than one line in data.frame
, so the application of the unique
function. But do not understand the @ function. I saw that it is related to a slot extraction, but I did not understand what it means in practice.