Description Usage Arguments Details Value Author(s) See Also Examples
Function which transform probabilities of success or occurence into a filtered vector according to a selected threshold.
1 | FilteringTransformation(ProbData, CutOffdata)
|
ProbData |
a vector containing the data to be converted |
CutOffdata |
a numeric value containing the threshold to be used for converting ProbData. |
The values higher than the threshold are not converted to a "1" but kept while the values lower than the threshold are transformed into a zero.
A vector of zeros and original values of ProbData.
Wilfried Thuiller, Bruno Lafourcade
1 2 3 4 | xx <- rnorm(50,10)
yy <- FilteringTransformation(xx, 10)
cbind(xx,yy)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.