Last updated on 2024-11-13 11:49:40 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.1 | 2.87 | 23.70 | 26.57 | ERROR | |
r-devel-linux-x86_64-debian-gcc | 0.1 | 1.95 | 18.32 | 20.27 | ERROR | |
r-devel-linux-x86_64-fedora-clang | 0.1 | 42.85 | ERROR | |||
r-devel-linux-x86_64-fedora-gcc | 0.1 | 39.88 | ERROR | |||
r-devel-windows-x86_64 | 0.1 | 4.00 | 45.00 | 49.00 | ERROR | |
r-patched-linux-x86_64 | 0.1 | 2.88 | 22.23 | 25.11 | ERROR | |
r-release-linux-x86_64 | 0.1 | 1.96 | 22.39 | 24.35 | ERROR | |
r-release-macos-arm64 | 0.1 | 19.00 | NOTE | |||
r-release-macos-x86_64 | 0.1 | 29.00 | NOTE | |||
r-release-windows-x86_64 | 0.1 | 4.00 | 99.00 | 103.00 | ERROR | |
r-oldrel-macos-arm64 | 0.1 | 19.00 | OK | |||
r-oldrel-macos-x86_64 | 0.1 | 29.00 | OK | |||
r-oldrel-windows-x86_64 | 0.1 | 5.00 | 46.00 | 51.00 | ERROR |
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