Displaying 1 result from an estimated 1 matches for "avtest".
Did you mean:
dvtest
2013 Apr 13
1
how can I convert a result (text) in table format in R?
Hi R user,
Could you please give me some hints on how I can convert text in table format in R?
I was doing model assessment using dismo package
for example:
bg <- randomPoints(current, 500)
pvtest <- data.frame(extract(current, occtest))
avtest <- data.frame(extract(current, bg))
e2 = evaluate(model, p=pvtest, a=avtest)
> e2
class : ModelEvaluation
n presences : 10
n absences : 1000
AUC : 0.9952
cor : 0.6453986
max TPR+TNR at : 0.4496625
I wanted to put the e2 into table. How can I change...