major change in the design of R interface

This commit is contained in:
unknown
2014-08-26 23:41:03 -07:00
parent 84e5fc285b
commit 0130be4acc
21 changed files with 1175 additions and 128 deletions

11
R-package/R/xgb.dump.R Normal file
View File

@@ -0,0 +1,11 @@
# dump model
xgb.dump <- function(booster, fname, fmap = "") {
if (class(booster) != "xgb.Booster") {
stop("xgb.dump: first argument must be type xgb.Booster")
}
if (typeof(fname) != "character"){
stop("xgb.dump: second argument must be type character")
}
.Call("XGBoosterDumpModel_R", booster, fname, fmap, PACKAGE="xgboost")
return(TRUE)
}