--
You received this message because you are subscribed to the Google Groups "Maxent" group.
To unsubscribe from this group and stop receiving emails from it, send an email to maxent+un...@googlegroups.com.
To post to this group, send email to max...@googlegroups.com.
Visit this group at https://groups.google.com/group/maxent.
For more options, visit https://groups.google.com/d/optout.
Actually Alaa have also made an R script to calculate TSS for models with replication.
Hossameldin ELALKAMY, MPhill., PhD. GIS Analyst | |
|
|
--
Hi Mohan
In the method you suggested in the Arcmap procedure to create the error matrix. In step 3 you mentioned to classify the prediction raster into 1 and 2 for suitable and not suitable but you didn’t mention the threshold used. Also why don’t use a thresholded binary prediction raster from Maxent directly.
BCTS GIS | Hossameldin ELALKAMY, MPhill., RPBio GIS Analyst BC Timber Sales | Prince George Ministry of Forests, Lands and Natural Resource Operations P. 250.614.7521 C. 778.896.3229 | 2000 Ospika Blvd. PG, BC., V2N 4W5 |
| Webpage | GIS Requests | Profile |
Antelope Specialist Group, IUCN
Join me on LinkedIn
--
Hi Mohan
In the method you suggested in the Arcmap procedure to create the error matrix. In step 3 you mentioned to classify the prediction raster into 1 and 2 for suitable and not suitable but you didn’t mention the threshold used. Also why don’t use a thresholded binary prediction raster from Maxent directly.
BCTS
GIS
Hossameldin ELALKAMY, MPhill., RPBio
GIS Analyst
BC Timber Sales | Prince George
Ministry of Forests, Lands and Natural Resource Operations
P. 250.614.7521 C. 778.896.3229 | 2000 Ospika Blvd. PG, BC., V2N 4W5
Webpage | GIS Requests | Profile
Antelope Specialist Group, IUCN
Join me on LinkedIn
From: max...@googlegroups.com <max...@googlegroups.com> On Behalf Of Mohan Joshi
Sent: 17 ديسمبر, 2018 11:42 م
To: Maxent <max...@googlegroups.com>
Subject: [maxent] Re: TSS calculation
OOPS. Here are the attachments.
--
You received this message because you are subscribed to the Google Groups "Maxent" group.
To unsubscribe from this group and stop receiving emails from it, send an email to maxent+un...@googlegroups.com.
To post to this group, send email to max...@googlegroups.com.
Visit this group at https://groups.google.com/group/maxent.
For more options, visit https://groups.google.com/d/optout.
myntss <- c(rep(0, times = n)
# n is number of replicate models
avgtss <- 0
then in a 'for loop' over i in 1:n where n is the number of replicate model predictions (ideally u
you have them in a list for indexing with double square brackets)
{
myntss[n] <- yourtssfunction("extract from myprexictiony[[i]]", "truth")
if (i == n) avgtss <- mean(myntss)
}
that should do it.
Rainer