I am trying to run an elementary species distribution model, and biomod2
is not plotting my presence data. I can attempt to recreate the problem here, but obviously I am unable to upload the tif file I am working with. To test it, I simply created a matrix of longitude/latitude values corresponding to a straight vertical line in Colombia, as follows:
tmp <- seq(-1,10,0.01) # latitude
tmp2 <- rep(-75,length(tmp)) # longitude
testVec <- cbind(tmp2,tmp)
myRespXY <- testVec
These are the coordinates of my presence data. I then only use presence data, so I have
myResp <- as.numeric(rep(1,nrow(myRespXY)))
Then, using the formatting function for biomod2
,
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp, # presence data (all 1's)
expl.var = myExpl, # RasterStack
resp.xy = myRespXY, # coordinates of presences, corresponding to a vertical line in Colombia
resp.name = myRespName) # name of species
plot(myBiomodData)
What am I doing wrong? biomod2
is reading the presences, and sometimes it will plot a few points, but it doesn't plot most of them. How can I get the output to plot all of the presence data?
Well this is not a bug of the package but more a graphical issue that comes when you are working with high resolution raster of environmental variables.
By default the plotting function colorate pixels accoring to there class (presence/absence/undifined). Because pixels are so little here (and the presences/absences are so few compare to undifined area) we can't really see different colors in the plot.
A work around is to extract presences/absences from the
BIOMOD_FormatingData()
output usepoints
function fromraster
package to display them on top of the map.Here is a simple reproducible example:
This should give you a plot like this one: