CRAN Package Check Results for Package collateral

Last updated on 2020-05-06 06:48:19 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.4.2 2.64 37.30 39.94 ERROR
r-devel-linux-x86_64-debian-gcc 0.4.2 1.94 28.83 30.77 ERROR
r-devel-linux-x86_64-fedora-clang 0.4.2 48.38 ERROR
r-devel-linux-x86_64-fedora-gcc 0.4.2 51.38 ERROR
r-devel-windows-ix86+x86_64 0.4.2 10.00 68.00 78.00 ERROR
r-patched-linux-x86_64 0.4.2 2.38 35.76 38.14 ERROR
r-patched-solaris-x86 0.4.2 70.10 ERROR
r-release-linux-x86_64 0.4.2 2.55 35.70 38.25 ERROR
r-release-osx-x86_64 0.4.2 ERROR
r-release-windows-ix86+x86_64 0.4.2 6.00 71.00 77.00 ERROR
r-oldrel-osx-x86_64 0.4.2 OK
r-oldrel-windows-ix86+x86_64 0.4.2 6.00 63.00 69.00 ERROR

Check Details

Version: 0.4.2
Check: examples
Result: ERROR
    Running examples in 'collateral-Ex.R' failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: has
    > ### Title: Filter elements that contain a type of side effect.
    > ### Aliases: has has_results has_errors has_warnings has_messages
    > ### has_output
    >
    > ### ** Examples
    >
    >
    > library(magrittr)
    >
    > list("a", 10, 100) %>% map_safely(log) %>% has_errors()
    [1] TRUE FALSE FALSE
    > list(5, -12, 103) %>% map_quietly(log) %>% has_warnings()
    [1] FALSE TRUE FALSE
    >
    > suppressMessages(library(tidyverse))
    >
    > # if you're working with list-columns, the tally functions are useful
    > # in conjunction with dplyr::summarise()
    > mtcars %>%
    + rownames_to_column(var = "car") %>%
    + as_data_frame() %>%
    + select(car, cyl, disp, wt) %>%
    + # spike some rows in cyl == 4 to make them fail
    + mutate(wt = dplyr::case_when(
    + wt < 2 ~ -wt,
    + TRUE ~ wt)) %>%
    + # nest and do some operations quietly()
    + nest(-cyl) %>%
    + mutate(qlog = map_quietly(data, ~ log(.$wt))) %>%
    + filter(has_warnings(qlog))
    Warning: All elements of `...` must be named.
    Did you want `data = c(car, disp, wt)`?
    Error: Input must be a vector, not a `quietly_mapped` object.
    Backtrace:
     x
     1. +-(function (x, ...) ...
     2. +-tibble:::print.tbl(x)
     3. | +-cli::cat_line(format(x, ..., n = n, width = width, n_extra = n_extra))
     4. | | \-base::paste0(..., collapse = "\n")
     5. | +-base::format(x, ..., n = n, width = width, n_extra = n_extra)
     6. | \-tibble:::format.tbl(x, ..., n = n, width = width, n_extra = n_extra)
     7. | \-tibble::trunc_mat(x, n = n, width = width, n_extra = n_extra)
     8. | +-base::as.data.frame(head(x, n))
     9. | +-utils::head(x, n)
     10. | \-utils:::head.data.frame(x, n)
     11. | +-base::do.call("[", args)
     12. | +-x[1L, , drop = FALSE]
     13. | \-tibble:::`[.tbl_df`(x, 1L, , drop = FALSE)
     14. | \-tibble:::tbl_subset_row(xo, i = i, i_arg)
     15. | \-base::lapply(unclass(x), vec_slice, i = i)
     16. | \-vctrs:::FUN(X[[i]], ...)
     17. \-vctrs:::stop_scalar_type(...)
     18. \-vctrs:::stop_vctrs(msg, "vctrs_error_scalar_t
    Execution halted
Flavor: r-devel-linux-x86_64-debian-clang

Version: 0.4.2
Check: re-building of vignette outputs
Result: WARN
    Error(s) in re-building vignettes:
     ...
    --- re-building 'collateral.Rmd' using rmarkdown
    Quitting from lines 221-229 (collateral.Rmd)
    Error: processing vignette 'collateral.Rmd' failed with diagnostics:
    Input must be a vector, not a `safely_mapped` object.
    --- failed re-building 'collateral.Rmd'
    
    SUMMARY: processing the following file failed:
     'collateral.Rmd'
    
    Error: Vignette re-building failed.
    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, r-release-osx-x86_64

Version: 0.4.2
Check: examples
Result: ERROR
    Running examples in ‘collateral-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: has
    > ### Title: Filter elements that contain a type of side effect.
    > ### Aliases: has has_results has_errors has_warnings has_messages
    > ### has_output
    >
    > ### ** Examples
    >
    >
    > library(magrittr)
    >
    > list("a", 10, 100) %>% map_safely(log) %>% has_errors()
    [1] TRUE FALSE FALSE
    > list(5, -12, 103) %>% map_quietly(log) %>% has_warnings()
    [1] FALSE TRUE FALSE
    >
    > suppressMessages(library(tidyverse))
    >
    > # if you're working with list-columns, the tally functions are useful
    > # in conjunction with dplyr::summarise()
    > mtcars %>%
    + rownames_to_column(var = "car") %>%
    + as_data_frame() %>%
    + select(car, cyl, disp, wt) %>%
    + # spike some rows in cyl == 4 to make them fail
    + mutate(wt = dplyr::case_when(
    + wt < 2 ~ -wt,
    + TRUE ~ wt)) %>%
    + # nest and do some operations quietly()
    + nest(-cyl) %>%
    + mutate(qlog = map_quietly(data, ~ log(.$wt))) %>%
    + filter(has_warnings(qlog))
    Warning: All elements of `...` must be named.
    Did you want `data = c(car, disp, wt)`?
    Error: Input must be a vector, not a `quietly_mapped` object.
    Backtrace:
     █
     1. ├─(function (x, ...) ...
     2. ├─tibble:::print.tbl(x)
     3. │ ├─cli::cat_line(format(x, ..., n = n, width = width, n_extra = n_extra))
     4. │ │ └─base::paste0(..., collapse = "\n")
     5. │ ├─base::format(x, ..., n = n, width = width, n_extra = n_extra)
     6. │ └─tibble:::format.tbl(x, ..., n = n, width = width, n_extra = n_extra)
     7. │ └─tibble::trunc_mat(x, n = n, width = width, n_extra = n_extra)
     8. │ ├─base::as.data.frame(head(x, n))
     9. │ ├─utils::head(x, n)
     10. │ └─utils:::head.data.frame(x, n)
     11. │ ├─base::do.call("[", args)
     12. │ ├─x[1L, , drop = FALSE]
     13. │ └─tibble:::`[.tbl_df`(x, 1L, , drop = FALSE)
     14. │ └─tibble:::tbl_subset_row(xo, i = i, i_arg)
     15. │ └─base::lapply(unclass(x), vec_slice, i = i)
     16. │ └─vctrs:::FUN(X[[i]],
    Execution halted
Flavors: r-devel-linux-x86_64-debian-gcc, r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.4.2
Check: examples
Result: ERROR
    Running examples in ‘collateral-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: has
    > ### Title: Filter elements that contain a type of side effect.
    > ### Aliases: has has_results has_errors has_warnings has_messages
    > ### has_output
    >
    > ### ** Examples
    >
    >
    > library(magrittr)
    >
    > list("a", 10, 100) %>% map_safely(log) %>% has_errors()
    [1] TRUE FALSE FALSE
    > list(5, -12, 103) %>% map_quietly(log) %>% has_warnings()
    [1] FALSE TRUE FALSE
    >
    > suppressMessages(library(tidyverse))
    >
    > # if you're working with list-columns, the tally functions are useful
    > # in conjunction with dplyr::summarise()
    > mtcars %>%
    + rownames_to_column(var = "car") %>%
    + as_data_frame() %>%
    + select(car, cyl, disp, wt) %>%
    + # spike some rows in cyl == 4 to make them fail
    + mutate(wt = dplyr::case_when(
    + wt < 2 ~ -wt,
    + TRUE ~ wt)) %>%
    + # nest and do some operations quietly()
    + nest(-cyl) %>%
    + mutate(qlog = map_quietly(data, ~ log(.$wt))) %>%
    + filter(has_warnings(qlog))
    Warning: All elements of `...` must be named.
    Did you want `data = c(car, disp, wt)`?
    Error: Input must be a vector, not a `quietly_mapped` object.
    Backtrace:
     █
     1. ├─(function (x, ...) ...
     2. ├─tibble:::print.tbl(x)
     3. │ ├─cli::cat_line(format(x, ..., n = n, width = width, n_extra = n_extra))
     4. │ │ └─base::paste0(..., collapse = "\n")
     5. │ ├─base::format(x, ..., n = n, width = width, n_extra = n_extra)
     6. │ └─tibble:::format.tbl(x, ..., n = n, width = width, n_extra = n_extra)
     7. │ └─tibble::trunc_mat(x, n = n, width = width, n_extra = n_extra)
     8. │ ├─base::as.data.frame(head(x, n))
     9. │ ├─utils::head(x, n)
     10. │ └─utils:::head.data.frame(x, n)
     11. │ ├─base::do.call("[", args)
     12. │ ├─x[1L, , drop = FALSE]
     13. │ └─tibble:::`[.tbl_df`(x, 1L, , drop = FALSE)
     14. │ └─tibble:::tbl_subset_row(xo, i = i, i_arg)
     15. │ └─base::lapply(unclass(x), vec_slice, i = i)
     16. │ └─vctrs:::FUN(X[[i]],
    Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-solaris-x86, r-release-osx-x86_64

Version: 0.4.2
Check: re-building of vignette outputs
Result: WARN
    Error(s) in re-building vignettes:
    --- re-building ‘collateral.Rmd’ using rmarkdown
    Quitting from lines 221-229 (collateral.Rmd)
    Error: processing vignette 'collateral.Rmd' failed with diagnostics:
    Input must be a vector, not a `safely_mapped` object.
    --- failed re-building ‘collateral.Rmd’
    
    SUMMARY: processing the following file failed:
     ‘collateral.Rmd’
    
    Error: Vignette re-building failed.
    Execution halted
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-release-windows-ix86+x86_64, r-oldrel-windows-ix86+x86_64

Version: 0.4.2
Check: examples
Result: ERROR
    Running examples in 'collateral-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: has
    > ### Title: Filter elements that contain a type of side effect.
    > ### Aliases: has has_results has_errors has_warnings has_messages
    > ### has_output
    >
    > ### ** Examples
    >
    >
    > library(magrittr)
    >
    > list("a", 10, 100) %>% map_safely(log) %>% has_errors()
    [1] TRUE FALSE FALSE
    > list(5, -12, 103) %>% map_quietly(log) %>% has_warnings()
    [1] FALSE TRUE FALSE
    >
    > suppressMessages(library(tidyverse))
    >
    > # if you're working with list-columns, the tally functions are useful
    > # in conjunction with dplyr::summarise()
    > mtcars %>%
    + rownames_to_column(var = "car") %>%
    + as_data_frame() %>%
    + select(car, cyl, disp, wt) %>%
    + # spike some rows in cyl == 4 to make them fail
    + mutate(wt = dplyr::case_when(
    + wt < 2 ~ -wt,
    + TRUE ~ wt)) %>%
    + # nest and do some operations quietly()
    + nest(-cyl) %>%
    + mutate(qlog = map_quietly(data, ~ log(.$wt))) %>%
    + filter(has_warnings(qlog))
    Warning: All elements of `...` must be named.
    Did you want `data = c(car, disp, wt)`?
    Error: Input must be a vector, not a `quietly_mapped` object.
    Backtrace:
     x
     1. +-(function (x, ...) ...
     2. +-tibble:::print.tbl(x)
     3. | +-cli::cat_line(format(x, ..., n = n, width = width, n_extra = n_extra))
     4. | | \-base::paste0(..., collapse = "\n")
     5. | +-base::format(x, ..., n = n, width = width, n_extra = n_extra)
     6. | \-tibble:::format.tbl(x, ..., n = n, width = width, n_extra = n_extra)
     7. | \-tibble::trunc_mat(x, n = n, width = width, n_extra = n_extra)
     8. | +-base::as.data.frame(head(x, n))
     9. | +-utils::head(x, n)
     10. | \-utils:::head.data.frame(x, n)
     11. | +-base::do.call("[", args)
     12. | +-x[1L, , drop = FALSE]
     13. | \-tibble:::`[.tbl_df`(x, 1L, , drop = FALSE)
     14. | \-tibble:::tbl_subset_row(xo, i = i, i_arg)
     15. | \-base::lapply(unclass(x), vec_slice, i = i)
     16. | \-vctrs:::FUN(X[[i]], ...)
     17. \-vctrs:::stop_scalar_type(...)
     18. \-vctrs:::stop_vctrs(msg, "vctrs_error_scalar_t
    Execution halted
Flavors: r-devel-windows-ix86+x86_64, r-release-windows-ix86+x86_64

Version: 0.4.2
Check: re-building of vignette outputs
Result: WARN
    Error(s) in re-building vignettes:
     ...
    --- re-building ‘collateral.Rmd’ using rmarkdown
    Warning in engine$weave(file, quiet = quiet, encoding = enc) :
     Pandoc (>= 1.12.3) and/or pandoc-citeproc not available. Falling back to R Markdown v1.
    Quitting from lines 221-229 (collateral.Rmd)
    Error: processing vignette 'collateral.Rmd' failed with diagnostics:
    Input must be a vector, not a `safely_mapped` object.
    --- failed re-building ‘collateral.Rmd’
    
    SUMMARY: processing the following file failed:
     ‘collateral.Rmd’
    
    Error: Vignette re-building failed.
    Execution halted
Flavor: r-patched-solaris-x86

Version: 0.4.2
Check: examples
Result: ERROR
    Running examples in 'collateral-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: has
    > ### Title: Filter elements that contain a type of side effect.
    > ### Aliases: has has_results has_errors has_warnings has_messages
    > ### has_output
    >
    > ### ** Examples
    >
    >
    > library(magrittr)
    >
    > list("a", 10, 100) %>% map_safely(log) %>% has_errors()
    [1] TRUE FALSE FALSE
    > list(5, -12, 103) %>% map_quietly(log) %>% has_warnings()
    [1] FALSE TRUE FALSE
    >
    > suppressMessages(library(tidyverse))
    >
    > # if you're working with list-columns, the tally functions are useful
    > # in conjunction with dplyr::summarise()
    > mtcars %>%
    + rownames_to_column(var = "car") %>%
    + as_data_frame() %>%
    + select(car, cyl, disp, wt) %>%
    + # spike some rows in cyl == 4 to make them fail
    + mutate(wt = dplyr::case_when(
    + wt < 2 ~ -wt,
    + TRUE ~ wt)) %>%
    + # nest and do some operations quietly()
    + nest(-cyl) %>%
    + mutate(qlog = map_quietly(data, ~ log(.$wt))) %>%
    + filter(has_warnings(qlog))
    Warning: All elements of `...` must be named.
    Did you want `data = c(car, disp, wt)`?
    Error: Input must be a vector, not a `quietly_mapped` object.
    Backtrace:
     x
     1. +-(function (x, ...) ...
     2. +-tibble:::print.tbl(x)
     3. | +-cli::cat_line(format(x, ..., n = n, width = width, n_extra = n_extra))
     4. | | \-base::paste0(..., collapse = "\n")
     5. | +-base::format(x, ..., n = n, width = width, n_extra = n_extra)
     6. | \-tibble:::format.tbl(x, ..., n = n, width = width, n_extra = n_extra)
     7. | \-tibble::trunc_mat(x, n = n, width = width, n_extra = n_extra)
     8. | +-base::as.data.frame(head(x, n))
     9. | +-utils::head(x, n)
     10. | \-utils:::head.data.frame(x, n)
     11. | +-x[seq_len(n), , drop = FALSE]
     12. | \-tibble:::`[.tbl_df`(x, seq_len(n), , drop = FALSE)
     13. | \-tibble:::tbl_subset_row(xo, i = i, i_arg)
     14. | \-base::lapply(unclass(x), vec_slice, i = i)
     15. | \-vctrs:::FUN(X[[i]], ...)
     16. \-vctrs:::stop_scalar_type(...)
     17. \-vctrs:::stop_vctrs(msg, "vctrs_error_scalar_type", actual = x)
    Execution halted
Flavor: r-oldrel-windows-ix86+x86_64