I have a data set with over 400 features that I am estimating with GBM using H2O atop R. When I use the variable importance function (h2o.varimp) it only shows me the head and tail of the full ranked variable list. Is there a way to have the entire list displayed?
This is not specific to variable importance, this is just how H2O displays H2O Frames in the R console. If you want to view the whole frame, you could convert it to an R data.frame and then print it.
df <- as.data.frame(h2o.varimp(model))
print(df)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With