Last updated on 2024-10-31 10:50:34 CET.
Package | ERROR | NOTE | OK |
---|---|---|---|
RRBoost | 9 | 2 | 2 |
Current CRAN status: ERROR: 9, NOTE: 2, OK: 2
Version: 0.1
Check: dependencies in R code
Result: WARN
Missing or unexported object: ‘RobStatTM::mscale’
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-windows-x86_64, r-oldrel-windows-x86_64
Version: 0.1
Check: Rd files
Result: NOTE
checkRd: (-1) Boost.Rd:40: Lost braces; missing escapes or markup?
40 | \item{niter}{number of boosting iterations (for RRBoost: T_{1,max} + T_{2,max}) (numeric)}
| ^
checkRd: (-1) Boost.Rd:40: Lost braces; missing escapes or markup?
40 | \item{niter}{number of boosting iterations (for RRBoost: T_{1,max} + T_{2,max}) (numeric)}
| ^
checkRd: (-1) Boost.Rd:54: Lost braces; missing escapes or markup?
54 | \item{niter}{number of iterations for the boosting algorithm (for RRBoost T_{1,max} + T_{2,max}) (numeric)}
| ^
checkRd: (-1) Boost.Rd:54: Lost braces; missing escapes or markup?
54 | \item{niter}{number of iterations for the boosting algorithm (for RRBoost T_{1,max} + T_{2,max}) (numeric)}
| ^
checkRd: (-1) Boost.control.Rd:25: Lost braces; missing escapes or markup?
25 | \item{n_init}{number of iterations for the SBoost step of RRBoost ($T_{1,max}$) (int)}
| ^
checkRd: (-1) Boost.validation.Rd:41: Lost braces; missing escapes or markup?
41 | \item{niter}{number of iterations (for RRBoost T_{1,max} + T_{2,max}) (numeric)}
| ^
checkRd: (-1) Boost.validation.Rd:41: Lost braces; missing escapes or markup?
41 | \item{niter}{number of iterations (for RRBoost T_{1,max} + T_{2,max}) (numeric)}
| ^
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64
Version: 0.1
Check: examples
Result: ERROR
Running examples in ‘RRBoost-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: Boost
> ### Title: Robust Boosting for regression
> ### Aliases: Boost
>
> ### ** Examples
>
> data(airfoil)
> n <- nrow(airfoil)
> n0 <- floor( 0.2 * n )
> set.seed(123)
> idx_test <- sample(n, n0)
> idx_train <- sample((1:n)[-idx_test], floor( 0.6 * n ) )
> idx_val <- (1:n)[ -c(idx_test, idx_train) ]
> xx <- airfoil[, -6]
> yy <- airfoil$y
> xtrain <- xx[ idx_train, ]
> ytrain <- yy[ idx_train ]
> xval <- xx[ idx_val, ]
> yval <- yy[ idx_val ]
> xtest <- xx[ idx_test, ]
> ytest <- yy[ idx_test ]
> model_RRBoost_LADTree = Boost(x_train = xtrain, y_train = ytrain,
+ x_val = xval, y_val = yval, x_test = xtest, y_test = ytest,
+ type = "RRBoost", error = "rmse", y_init = "LADTree",
+ max_depth = 1, niter = 10, ## to keep the running time low
+ control = Boost.control(max_depth_init = 2,
+ min_leaf_size_init = 20, make_prediction = TRUE,
+ cal_imp = FALSE))
Error: 'mscale' is not an exported object from 'namespace:RobStatTM'
Execution halted
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64, r-release-linux-x86_64
Version: 0.1
Check: examples
Result: ERROR
Running examples in ‘RRBoost-Ex.R’ failed
The error most likely occurred in:
> ### Name: Boost
> ### Title: Robust Boosting for regression
> ### Aliases: Boost
>
> ### ** Examples
>
> data(airfoil)
> n <- nrow(airfoil)
> n0 <- floor( 0.2 * n )
> set.seed(123)
> idx_test <- sample(n, n0)
> idx_train <- sample((1:n)[-idx_test], floor( 0.6 * n ) )
> idx_val <- (1:n)[ -c(idx_test, idx_train) ]
> xx <- airfoil[, -6]
> yy <- airfoil$y
> xtrain <- xx[ idx_train, ]
> ytrain <- yy[ idx_train ]
> xval <- xx[ idx_val, ]
> yval <- yy[ idx_val ]
> xtest <- xx[ idx_test, ]
> ytest <- yy[ idx_test ]
> model_RRBoost_LADTree = Boost(x_train = xtrain, y_train = ytrain,
+ x_val = xval, y_val = yval, x_test = xtest, y_test = ytest,
+ type = "RRBoost", error = "rmse", y_init = "LADTree",
+ max_depth = 1, niter = 10, ## to keep the running time low
+ control = Boost.control(max_depth_init = 2,
+ min_leaf_size_init = 20, make_prediction = TRUE,
+ cal_imp = FALSE))
Error: 'mscale' is not an exported object from 'namespace:RobStatTM'
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-release-windows-x86_64, r-oldrel-windows-x86_64