I am using maxent in R to predict the distribution of a certain specie with two climate change scenarios. I am using a simple code to know the ROC/AUC but i want a code that would plot standard deviation line (standard error) with the ROC in the plot. I am mentioning the codes to have an idea about my work.
me = maxent( mask1, p=train_p, a=train_a, factors=('Soil.type'))
e = evaluate(test_p,test_a, me, mask1)
e
pred_me = predict(me, mask1, ext=ext, progress='')