boost-R / gamboostLSS

Boosting models for fitting generalized additive models for location, shape and scale (GAMLSS) to potentially high dimensional data. The current relase version can be found on CRAN (https://cran.r-project.org/package=gamboostLSS).
26 stars 11 forks source link

print all steplengths nu in summary.mboostLSS #7

Closed sbrockhaus closed 8 years ago

sbrockhaus commented 8 years ago

The current print-statement in summary.mboostLSS is: cat("Step size: ", object[[1]]$control$nu, "\n\n") https://github.com/hofnerb/gamboostLSS/blob/master/pkg/R/methods.R#L290 Which means you see only the step length of the first distribution parameter.

If it would be cat("Step size: ", sapply(object, function(x) x$control$nu), "\n\n") one would see if different step-lengths are used for the distribution parameters. Best