CRAN Package Check Results for Package embed

Last updated on 2020-06-29 06:48:04 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.1.0 15.18 237.52 252.70 ERROR
r-devel-linux-x86_64-debian-gcc 0.1.0 12.92 177.84 190.76 ERROR
r-devel-linux-x86_64-fedora-clang 0.1.0 309.32 ERROR
r-devel-linux-x86_64-fedora-gcc 0.1.0 302.84 ERROR
r-patched-linux-x86_64 0.1.0 16.20 228.32 244.52 ERROR
r-patched-solaris-x86 0.1.0 443.70 ERROR
r-release-linux-x86_64 0.1.0 15.25 225.74 240.99 ERROR
r-release-osx-x86_64 0.1.0 OK
r-release-windows-ix86+x86_64 0.1.0 58.00 216.00 274.00 ERROR
r-oldrel-osx-x86_64 0.1.0 OK
r-oldrel-windows-ix86+x86_64 0.1.0 73.00 230.00 303.00 ERROR

Check Details

Version: 0.1.0
Check: examples
Result: ERROR
    Running examples in 'embed-Ex.R' failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: step_woe
    > ### Title: Weight of evidence transformation
    > ### Aliases: step_woe tidy.step_woe
    > ### Keywords: datagen
    >
    > ### ** Examples
    >
    > library(modeldata)
    > data("credit_data")
    >
    > set.seed(111)
    > in_training <- sample(1:nrow(credit_data), 2000)
    >
    > credit_tr <- credit_data[ in_training, ]
    > credit_te <- credit_data[-in_training, ]
    >
    > rec <- recipe(Status ~ ., data = credit_tr) %>%
    + step_woe(Job, Home, outcome = Status)
    >
    > woe_models <- prep(rec, training = credit_tr)
    Error: `call` must be a quoted call
    Backtrace:
     x
     1. +-recipes::prep(rec, training = credit_tr)
     2. \-recipes:::prep.recipe(rec, training = credit_tr)
     3. \-purrr::map_lgl(x$steps[[i]], is_tune)
     4. \-recipes:::.f(.x[[i]], ...)
     5. \-rlang::call_name(x)
     6. \-rlang:::abort_call_input_type("call")
    Execution halted
Flavor: r-devel-linux-x86_64-debian-clang

Version: 0.1.0
Check: tests
Result: ERROR
     Running 'testthat.R' [48s/49s]
    Running the tests in 'tests/testthat.R' failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     -- 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ----
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [23:24:26] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [23:24:27] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [23:24:27] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) --------
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [23:24:27] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [23:24:29] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [23:24:29] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [23:24:29] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 4. Error: step_woe (@test_woe.R#138) ---------------------------------------
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     -- 5. Error: printing (@test_woe.R#190) ---------------------------------------
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     == testthat results ===========================================================
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-devel-linux-x86_64-debian-clang

Version: 0.1.0
Check: examples
Result: ERROR
    Running examples in ‘embed-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: step_woe
    > ### Title: Weight of evidence transformation
    > ### Aliases: step_woe tidy.step_woe
    > ### Keywords: datagen
    >
    > ### ** Examples
    >
    > library(modeldata)
    > data("credit_data")
    >
    > set.seed(111)
    > in_training <- sample(1:nrow(credit_data), 2000)
    >
    > credit_tr <- credit_data[ in_training, ]
    > credit_te <- credit_data[-in_training, ]
    >
    > rec <- recipe(Status ~ ., data = credit_tr) %>%
    + step_woe(Job, Home, outcome = Status)
    >
    > woe_models <- prep(rec, training = credit_tr)
    Error: `call` must be a quoted call
    Backtrace:
     █
     1. ├─recipes::prep(rec, training = credit_tr)
     2. └─recipes:::prep.recipe(rec, training = credit_tr)
     3. └─purrr::map_lgl(x$steps[[i]], is_tune)
     4. └─recipes:::.f(.x[[i]], ...)
     5. └─rlang::call_name(x)
     6. └─rlang:::abort_call_input_type("call")
    Execution halted
Flavors: r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.1.0
Check: tests
Result: ERROR
     Running ‘testthat.R’ [35s/52s]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     ── 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [20:58:10] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [20:58:11] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [20:58:11] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) ────────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [20:58:11] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [20:58:13] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [20:58:14] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [20:58:14] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 4. Error: step_woe (@test_woe.R#138) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     ── 5. Error: printing (@test_woe.R#190) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     ══ testthat results ═══════════════════════════════════════════════════════════
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.1.0
Check: examples
Result: ERROR
    Running examples in ‘embed-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: step_woe
    > ### Title: Weight of evidence transformation
    > ### Aliases: step_woe tidy.step_woe
    > ### Keywords: datagen
    >
    > ### ** Examples
    >
    > library(modeldata)
    > data("credit_data")
    >
    > set.seed(111)
    > in_training <- sample(1:nrow(credit_data), 2000)
    >
    > credit_tr <- credit_data[ in_training, ]
    > credit_te <- credit_data[-in_training, ]
    >
    > rec <- recipe(Status ~ ., data = credit_tr) %>%
    + step_woe(Job, Home, outcome = Status)
    >
    > woe_models <- prep(rec, training = credit_tr)
    Error: `call` must be a quoted call
    Backtrace:
     █
     1. ├─recipes::prep(rec, training = credit_tr)
     2. └─recipes:::prep.recipe(rec, training = credit_tr)
     3. └─purrr::map_lgl(x$steps[[i]], is_tune)
     4. └─recipes:::.f(.x[[i]], ...)
     5. └─rlang::call_name(x)
     6. └─rlang:::abort_call_input_type("call")
    Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-solaris-x86

Version: 0.1.0
Check: tests
Result: ERROR
     Running ‘testthat.R’ [50s/59s]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     OMP: Warning #96: Cannot form a team with 24 threads, using 2 instead.
     OMP: Hint Consider unsetting KMP_DEVICE_THREAD_LIMIT (KMP_ALL_THREADS), KMP_TEAMS_THREAD_LIMIT, and OMP_THREAD_LIMIT (if any are set).
     ── 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [12:24:14] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [12:24:15] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [12:24:15] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) ────────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [12:24:15] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [12:24:17] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [12:24:18] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [12:24:18] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 4. Error: step_woe (@test_woe.R#138) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     ── 5. Error: printing (@test_woe.R#190) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     ══ testthat results ═══════════════════════════════════════════════════════════
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-devel-linux-x86_64-fedora-clang

Version: 0.1.0
Check: tests
Result: ERROR
     Running ‘testthat.R’ [50s/61s]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     ── 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [13:32:49] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [13:32:49] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [13:32:49] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) ────────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [13:32:50] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [13:32:52] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [13:32:52] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [13:32:53] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 4. Error: step_woe (@test_woe.R#138) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     ── 5. Error: printing (@test_woe.R#190) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     ══ testthat results ═══════════════════════════════════════════════════════════
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc

Version: 0.1.0
Check: tests
Result: ERROR
     Running ‘testthat.R’ [44s/49s]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     ── 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [15:01:50] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [15:01:51] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [15:01:51] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) ────────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [15:01:51] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [15:01:54] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [15:01:54] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [15:01:55] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 4. Error: step_woe (@test_woe.R#138) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     ── 5. Error: printing (@test_woe.R#190) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     ══ testthat results ═══════════════════════════════════════════════════════════
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-patched-linux-x86_64

Version: 0.1.0
Check: tests
Result: ERROR
     Running ‘testthat.R’ [68s/100s]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     ── 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [06:20:51] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [06:20:51] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [06:20:51] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) ────────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [06:20:52] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [06:20:54] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [06:20:54] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [06:20:55] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 4. Error: step_woe (@test_woe.R#138) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     ── 5. Error: printing (@test_woe.R#190) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     ══ testthat results ═══════════════════════════════════════════════════════════
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-patched-solaris-x86

Version: 0.1.0
Check: tests
Result: ERROR
     Running ‘testthat.R’ [43s/47s]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     ── 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [07:05:18] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [07:05:18] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [07:05:18] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) ────────
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [07:05:18] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [07:05:21] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [07:05:21] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [07:05:21] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     ── 4. Error: step_woe (@test_woe.R#138) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     ── 5. Error: printing (@test_woe.R#190) ───────────────────────────────────────
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     ══ testthat results ═══════════════════════════════════════════════════════════
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-release-linux-x86_64

Version: 0.1.0
Check: examples
Result: ERROR
    Running examples in 'embed-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: step_woe
    > ### Title: Weight of evidence transformation
    > ### Aliases: step_woe tidy.step_woe
    > ### Keywords: datagen
    >
    > ### ** Examples
    >
    > library(modeldata)
    > data("credit_data")
    >
    > set.seed(111)
    > in_training <- sample(1:nrow(credit_data), 2000)
    >
    > credit_tr <- credit_data[ in_training, ]
    > credit_te <- credit_data[-in_training, ]
    >
    > rec <- recipe(Status ~ ., data = credit_tr) %>%
    + step_woe(Job, Home, outcome = Status)
    >
    > woe_models <- prep(rec, training = credit_tr)
    Error: `call` must be a quoted call
    Backtrace:
     x
     1. +-recipes::prep(rec, training = credit_tr)
     2. \-recipes:::prep.recipe(rec, training = credit_tr)
     3. \-purrr::map_lgl(x$steps[[i]], is_tune)
     4. \-recipes:::.f(.x[[i]], ...)
     5. \-rlang::call_name(x)
     6. \-rlang:::abort_call_input_type("call")
    Execution halted
Flavors: r-release-windows-ix86+x86_64, r-oldrel-windows-ix86+x86_64

Version: 0.1.0
Check: tests
Result: ERROR
     Running 'testthat.R' [36s]
    Running the tests in 'tests/testthat.R' failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     -- 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ----
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [09:14:44] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [09:14:44] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [09:14:44] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) --------
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [09:14:44] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [09:14:45] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [09:14:45] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [09:14:45] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 4. Error: step_woe (@test_woe.R#138) ---------------------------------------
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     -- 5. Error: printing (@test_woe.R#190) ---------------------------------------
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     == testthat results ===========================================================
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-release-windows-ix86+x86_64

Version: 0.1.0
Check: tests
Result: ERROR
     Running 'testthat.R' [42s]
    Running the tests in 'tests/testthat.R' failed.
    Complete output:
     > library(testthat)
     > library(embed)
     Loading required package: recipes
     Loading required package: dplyr
    
     Attaching package: 'dplyr'
    
     The following object is masked from 'package:testthat':
    
     matches
    
     The following objects are masked from 'package:stats':
    
     filter, lag
    
     The following objects are masked from 'package:base':
    
     intersect, setdiff, setequal, union
    
    
     Attaching package: 'recipes'
    
     The following object is masked from 'package:stats':
    
     step
    
     >
     > test_check(package = "embed")
     -- 1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194) ----
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [22:30:17] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 5 - 6 == -1
    
     [22:30:17] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [22:30:17] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276) --------
     length(xgb_binning) not equal to 6.
     1/1 mismatches
     [1] 8 - 6 == 2
    
     [22:30:17] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [22:30:19] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [22:30:19] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     [22:30:20] WARNING: amalgamation/../src/objective/regression_obj.cu:170: reg:linear is now deprecated in favor of reg:squarederror.
     -- 4. Error: step_woe (@test_woe.R#138) ---------------------------------------
     `call` must be a quoted call
     Backtrace:
     1. recipes::prep(rec, training = credit_tr)
     2. recipes:::prep.recipe(rec, training = credit_tr)
     3. purrr::map_lgl(x$steps[[i]], is_tune)
     4. recipes:::.f(.x[[i]], ...)
     5. rlang::call_name(x)
     6. rlang:::abort_call_input_type("call")
    
     -- 5. Error: printing (@test_woe.R#190) ---------------------------------------
     `call` must be a quoted call
     Backtrace:
     1. testthat::expect_output(...)
     11. recipes:::prep.recipe(woe_extract, training = credit_tr, verbose = TRUE)
     12. purrr::map_lgl(x$steps[[i]], is_tune)
     13. recipes:::.f(.x[[i]], ...)
     14. rlang::call_name(x)
     15. rlang:::abort_call_input_type("call")
    
     == testthat results ===========================================================
     [ OK: 235 | SKIPPED: 12 | WARNINGS: 0 | FAILED: 5 ]
     1. Failure: xgb_binning for classification (@test_discretize_xgb.R#194)
     2. Failure: xgb_binning for multi-classification (@test_discretize_xgb.R#235)
     3. Failure: xgb_binning for regression (@test_discretize_xgb.R#276)
     4. Error: step_woe (@test_woe.R#138)
     5. Error: printing (@test_woe.R#190)
    
     Error: testthat unit tests failed
     Execution halted
Flavor: r-oldrel-windows-ix86+x86_64