I've started reading about Species Distribution Modelling in R, and am commonly coming across the symbol '@' being used, often as part of a function within 'sapply'. Can anyone tell me what it means / what it is doing? Here are some examples:
auc <- sapply(list(a, b, c), function(x) x@auc)
sapply( e, function(x){ x@t[which.max(x@TPR + x@TNR)] } )
For the second example, 'e' is an object of class 'ModelEvaluation', where "max TPR+TNR at :" is one of the outputs from the model.
Thanks in advance!