I am plotting some partial dependences plots in R, for random forest. I am using pdp package and it is not reacting to any specification for my limits in z variable. code:
pd <- partial(RF, pred.var= c ( "SOC", "Q"))
plotPartial(pd, zlim=c(1000,3000))
i had also tried: zlim(c(1000,3000), and zmax and min and similars
Thanks for your suggestion, here is my code