Last updated on 2025-12-04 15:50:10 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.4.0 | 14.78 | 142.60 | 157.38 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.4.0 | 10.36 | 103.09 | 113.45 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.4.0 | 83.00 | 160.62 | 243.62 | ERROR | |
| r-devel-linux-x86_64-fedora-gcc | 0.4.0 | 119.00 | 134.13 | 253.13 | ERROR | |
| r-devel-windows-x86_64 | 0.4.0 | 17.00 | 142.00 | 159.00 | OK | |
| r-patched-linux-x86_64 | 0.4.0 | 14.36 | 130.73 | 145.09 | OK | |
| r-release-linux-x86_64 | 0.4.0 | 15.49 | 130.86 | 146.35 | OK | |
| r-release-macos-arm64 | 0.4.0 | OK | ||||
| r-release-macos-x86_64 | 0.4.0 | 15.00 | 116.00 | 131.00 | OK | |
| r-release-windows-x86_64 | 0.4.0 | 17.00 | 141.00 | 158.00 | OK | |
| r-oldrel-macos-arm64 | 0.4.0 | OK | ||||
| r-oldrel-macos-x86_64 | 0.4.0 | 15.00 | 141.00 | 156.00 | OK | |
| r-oldrel-windows-x86_64 | 0.4.0 | 25.00 | 186.00 | 211.00 | OK |
Version: 0.4.0
Check: examples
Result: ERROR
Running examples in ‘alookr-Ex.R’ failed
The error most likely occurred in:
> ### Name: run_models
> ### Title: Fit binary classification model
> ### Aliases: run_models
>
> ### ** Examples
>
> library(dplyr)
Attaching package: ‘dplyr’
The following object is masked from ‘package:randomForest’:
combine
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
>
> # Divide the train data set and the test data set.
> sb <- rpart::kyphosis %>%
+ split_by(Kyphosis)
>
> # Extract the train data set from original data set.
> train <- sb %>%
+ extract_set(set = "train")
>
> # Extract the test data set from original data set.
> test <- sb %>%
+ extract_set(set = "test")
>
> # Sampling for unbalanced data set using SMOTE(synthetic minority over-sampling technique).
> train <- sb %>%
+ sampling_target(seed = 1234L, method = "ubSMOTE")
>
> # Cleaning the set.
> train <- train %>%
+ cleanse
── Checking unique value ─────────────────────────── unique value is one ──
No variables that unique value is one.
── Checking unique rate ─────────────────────────────── high unique rate ──
No variables that high unique rate.
── Checking character variables ─────────────────────── categorical data ──
No character variables.
>
> # Run the model fitting.
> result <- run_models(.data = train, target = "Kyphosis", positive = "present")
Warning in throw_err_or_depr_msg("Passed unrecognized parameters: ", paste(head(names_unrecognized), :
Passed unrecognized parameters: verbose. This warning will become an error in a future version.
Warning in throw_err_or_depr_msg("Parameter '", match_old, "' has been renamed to '", :
Parameter 'data' has been renamed to 'x'. This warning will become an error in a future version.
Warning in throw_err_or_depr_msg("Parameter '", match_old, "' has been renamed to '", :
Parameter 'label' has been renamed to 'y'. This warning will become an error in a future version.
Warning in throw_err_or_depr_msg("Parameter '", match_old, "' has been renamed to '", :
Parameter 'eta' has been renamed to 'learning_rate'. This warning will become an error in a future version.
Error in `purrr::map()`:
ℹ In index: 6.
Caused by error in `process.y.margin.and.objective()`:
! Got numeric 'y' - supported objectives for this data are: reg:squarederror, reg:squaredlogerror, reg:logistic, reg:pseudohubererror, reg:absoluteerror, reg:quantileerror, count:poisson, reg:gamma, reg:tweedie. Was passed: binary:logistic
Backtrace:
▆
1. ├─alookr::run_models(.data = train, target = "Kyphosis", positive = "present")
2. │ └─... %>% ...
3. ├─tibble::tibble(...)
4. │ └─tibble:::tibble_quos(xs, .rows, .name_repair)
5. │ └─rlang::eval_tidy(xs[[j]], mask)
6. ├─purrr::map(., ~future::value(.x))
7. │ └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
8. │ ├─purrr:::with_indexed_errors(...)
9. │ │ └─base::withCallingHandlers(...)
10. │ ├─purrr:::call_with_cleanup(...)
11. │ └─alookr (local) .f(.x[[i]], ...)
12. │ ├─future::value(.x)
13. │ └─future:::value.Future(.x)
14. │ └─future:::signalConditions(...)
15. │ └─base::stop(condition)
16. └─purrr (local) `<fn>`(`<smplErrr>`)
17. └─cli::cli_abort(...)
18. └─rlang::abort(...)
Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.