Closed tpoisot closed 3 years ago
_pixel_score(x) = x >= 0.5 ? 2.0(1.0-x) : 2.0x
and then add
prediction = BIOCLIM(predictors, models) rescale!(prediction, collect(0.0:0.05:1.0)) cutoff = broadcast(x -> x > 0.05, prediction) plot(prediction, c=:lightgrey) mask(cutoff, prediction) |> plot! scatter!(longitudes(records), latitudes(records), lab="")
and then add