Last updated on 2025-09-18 03:50:34 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.1.4 | 23.45 | 303.96 | 327.41 | NOTE | |
r-devel-linux-x86_64-debian-gcc | 1.1.4 | 15.77 | 203.49 | 219.26 | NOTE | |
r-devel-linux-x86_64-fedora-clang | 1.1.4 | 516.59 | NOTE | |||
r-devel-linux-x86_64-fedora-gcc | 1.1.4 | 518.08 | NOTE | |||
r-devel-windows-x86_64 | 1.1.4 | 33.00 | 274.00 | 307.00 | ERROR | |
r-patched-linux-x86_64 | 1.1.4 | 22.28 | 277.69 | 299.97 | NOTE | |
r-release-linux-x86_64 | 1.1.4 | 18.94 | 276.64 | 295.58 | NOTE | |
r-release-macos-arm64 | 1.1.4 | 194.00 | NOTE | |||
r-release-macos-x86_64 | 1.1.4 | 311.00 | NOTE | |||
r-release-windows-x86_64 | 1.1.4 | 36.00 | 290.00 | 326.00 | NOTE | |
r-oldrel-macos-arm64 | 1.1.4 | 137.00 | OK | |||
r-oldrel-macos-x86_64 | 1.1.4 | 232.00 | OK | |||
r-oldrel-windows-x86_64 | 1.1.4 | 40.00 | 392.00 | 432.00 | ERROR |
Version: 1.1.4
Check: compiled code
Result: NOTE
File ‘dplyr/libs/dplyr.so’:
Found non-API calls to R: ‘LEVELS’, ‘OBJECT’, ‘PRVALUE’,
‘R_shallow_duplicate_attr’, ‘Rf_allocSExp’, ‘SET_PRCODE’,
‘SET_PRENV’, ‘SET_PRVALUE’
Compiled code should not call non-API entry points in R.
See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual,
and section ‘Moving into C API compliance’ for issues with the use of
non-API entry points.
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-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64
Version: 1.1.4
Check: compiled code
Result: NOTE
File 'dplyr/libs/x64/dplyr.dll':
Found non-API calls to R: 'LEVELS', 'OBJECT', 'PRVALUE',
'R_shallow_duplicate_attr', 'Rf_allocSExp', 'SET_PRCODE',
'SET_PRENV', 'SET_PRVALUE'
Compiled code should not call non-API entry points in R.
See 'Writing portable packages' in the 'Writing R Extensions' manual,
and section 'Moving into C API compliance' for issues with the use of
non-API entry points.
Flavors: r-devel-windows-x86_64, r-release-windows-x86_64
Version: 1.1.4
Check: examples
Result: ERROR
Running examples in 'dplyr-Ex.R' failed
The error most likely occurred in:
> ### Name: nest_by
> ### Title: Nest by one or more variables
> ### Aliases: nest_by
> ### Keywords: internal
>
> ### ** Examples
>
> # After nesting, you get one row per group
> iris %>% nest_by(Species)
# A tibble: 3 × 2
# Rowwise: Species
Species data
<fct> <list<tibble[,4]>>
1 setosa [50 × 4]
2 versicolor [50 × 4]
3 virginica [50 × 4]
> starwars %>% nest_by(species)
# A tibble: 38 × 2
# Rowwise: species
species data
<chr> <list<tibble[,13]>>
1 Aleena [1 × 13]
2 Besalisk [1 × 13]
3 Cerean [1 × 13]
4 Chagrian [1 × 13]
5 Clawdite [1 × 13]
6 Droid [6 × 13]
7 Dug [1 × 13]
8 Ewok [1 × 13]
9 Geonosian [1 × 13]
10 Gungan [3 × 13]
# ℹ 28 more rows
>
> # The output is grouped by row, which makes modelling particularly easy
> models <- mtcars %>%
+ nest_by(cyl) %>%
+ mutate(model = list(lm(mpg ~ wt, data = data)))
> models
# A tibble: 3 × 3
# Rowwise: cyl
cyl data model
<dbl> <list<tibble[,10]>> <list>
1 4 [11 × 10] <lm>
2 6 [7 × 10] <lm>
3 8 [14 × 10] <lm>
>
> models %>% summarise(rsq = summary(model)$r.squared)
`summarise()` has grouped output by 'cyl'. You can override using the `.groups`
argument.
# A tibble: 3 × 2
# Groups: cyl [3]
cyl rsq
<dbl> <dbl>
1 4 0.509
2 6 0.465
3 8 0.423
> ## Don't show:
> if (requireNamespace("broom", quietly = TRUE)) (if (getRversion() >= "3.4") withAutoprint else force)({ # examplesIf
+ ## End(Don't show)
+
+ # This is particularly elegant with the broom functions
+ models %>% summarise(broom::glance(model))
+ models %>% reframe(broom::tidy(model))
+ ## Don't show:
+ }) # examplesIf
> models %>% summarise(broom::glance(model))
Error in `summarise()`:
ℹ In argument: `broom::glance(model)`.
ℹ In row 1.
Caused by error in `ll()`:
! could not find function "ll"
Backtrace:
▆
1. ├─(if (getRversion() >= "3.4") withAutoprint else force)(...)
2. │ └─base::source(...)
3. │ ├─base::withVisible(eval(ei, envir))
4. │ └─base::eval(ei, envir)
5. │ └─base::eval(ei, envir)
6. ├─models %>% summarise(broom::glance(model))
7. ├─dplyr::summarise(., broom::glance(model))
8. ├─dplyr:::summarise.rowwise_df(., broom::glance(model))
9. │ └─dplyr:::summarise_cols(.data, dplyr_quosures(...), by, "summarise")
10. │ ├─base::withCallingHandlers(...)
11. │ └─dplyr:::map(quosures, summarise_eval_one, mask = mask)
12. │ └─base::lapply(.x, .f, ...)
13. │ └─dplyr (local) FUN(X[[i]], ...)
14. │ └─mask$eval_all_summarise(quo)
15. │ └─dplyr (local) eval()
16. ├─broom::glance(model)
17. ├─broom:::glance.lm(model)
18. │ ├─base::with(...)
19. │ └─base::with.default(...)
20. │ └─base::eval(substitute(expr), data, enclos = parent.frame())
21. │ └─base::eval(substitute(expr), data, enclos = parent.frame())
22. │ └─tibble::tibble(...)
23. │ └─tibble:::tibble_quos(xs, .rows, .name_repair)
24. │ └─rlang::eval_tidy(xs[[j]], mask)
25. ├─stats::AIC(x)
26. ├─stats:::AIC.default(x)
27. └─base::.handleSimpleError(...)
28. └─dplyr (local) h(simpleError(msg, call))
29. └─dplyr (local) handler(cnd)
30. └─rlang::abort(message, class = error_class, parent = parent, call = error_call)
Execution halted
Flavor: r-devel-windows-x86_64
Version: 1.1.4
Check: re-building of vignette outputs
Result: ERROR
Error(s) in re-building vignettes:
--- re-building 'base.Rmd' using rmarkdown
--- finished re-building 'base.Rmd'
--- re-building 'colwise.Rmd' using rmarkdown
--- finished re-building 'colwise.Rmd'
--- re-building 'dplyr.Rmd' using rmarkdown
--- finished re-building 'dplyr.Rmd'
--- re-building 'grouping.Rmd' using rmarkdown
--- finished re-building 'grouping.Rmd'
--- re-building 'in-packages.Rmd' using rmarkdown
--- finished re-building 'in-packages.Rmd'
--- re-building 'programming.Rmd' using rmarkdown
--- finished re-building 'programming.Rmd'
--- re-building 'rowwise.Rmd' using rmarkdown
Quitting from rowwise.Rmd:252-256 [unnamed-chunk-25]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NULL
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Error: processing vignette 'rowwise.Rmd' failed with diagnostics:
ℹ In argument: `broom::glance(mod)`.
ℹ In row 1.
Caused by error in `ll()`:
! could not find function "ll"
--- failed re-building 'rowwise.Rmd'
--- re-building 'two-table.Rmd' using rmarkdown
--- finished re-building 'two-table.Rmd'
--- re-building 'window-functions.Rmd' using rmarkdown
--- finished re-building 'window-functions.Rmd'
SUMMARY: processing the following file failed:
'rowwise.Rmd'
Error: Vignette re-building failed.
Execution halted
Flavor: r-devel-windows-x86_64
Version: 1.1.4
Check: whether package can be installed
Result: ERROR
Installation failed.
Flavor: r-oldrel-windows-x86_64
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.
Health stats visible at Monitor.