gbm.plot calls plot.gbm then adds to it.
Specifically adds common.scale = TRUE. L90 in gbm.plot:
plot(predictors[[j]], responses[[j]], ylim = c(ymin,
ymax), type = "l", xlab = x.label, ylab = y.label,
...)
Shouldn't change things but maybe does?? Try with it FALSE
Added @ 583 & 628 in gbm.auto
Did nothing.
Also need to extend the x & y axes, currently get clipped waay short.
gaus: L624: lineplot uses gbm.plot L638: csv uses plot.gbm
bin L577 & 597 csv code from https://stats.stackexchange.com/a/144871/43360 which uses gbm.plot code chunks
gbm.plot calls plot.gbm then adds to it. Specifically adds common.scale = TRUE. L90 in gbm.plot:
plot(predictors[[j]], responses[[j]], ylim = c(ymin, ymax), type = "l", xlab = x.label, ylab = y.label, ...) Shouldn't change things but maybe does?? Try with it FALSE Added @ 583 & 628 in gbm.auto Did nothing. Also need to extend the x & y axes, currently get clipped waay short.