CRAN Package Check Results for Package tables

Last updated on 2024-06-21 05:58:17 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.9.25 4.46 100.80 105.26 OK
r-devel-linux-x86_64-debian-gcc 0.9.25 4.59 75.02 79.61 OK
r-devel-linux-x86_64-fedora-clang 0.9.25 142.14 ERROR
r-devel-linux-x86_64-fedora-gcc 0.9.25 149.16 ERROR
r-devel-windows-x86_64 0.9.25 6.00 129.00 135.00 OK
r-patched-linux-x86_64 0.9.25 8.63 97.82 106.45 OK
r-release-linux-x86_64 0.9.25 4.93 96.32 101.25 OK
r-release-macos-arm64 0.9.25 66.00 OK
r-release-macos-x86_64 0.9.25 84.00 OK
r-release-windows-x86_64 0.9.25 6.00 134.00 140.00 OK
r-oldrel-macos-arm64 0.9.25 55.00 OK
r-oldrel-macos-x86_64 0.9.25 124.00 OK
r-oldrel-windows-x86_64 0.9.25 8.00 138.00 146.00 OK

Check Details

Version: 0.9.25
Check: examples
Result: ERROR Running examples in ‘tables-Ex.R’ failed The error most likely occurred in: > ### Name: matrix_form.tabular > ### Title: Transform tabular object to matrices printable by formatters > ### package > ### Aliases: matrix_form.tabular > > ### ** Examples > > if (requireNamespace("formatters")) { + Sex <- factor(sample(c("Male", "Female"), 100, rep=TRUE)) + Status <- factor(sample(c("low", "medium", "high"), 100, rep=TRUE)) + z <- rnorm(100) + 5 + fmt <- function(x) { + s <- format(x, digits=2) + even <- ((1:length(s)) %% 2) == 0 + s[even] <- sprintf("(%s)", s[even]) + s + } + tab <- tabular( Justify(c)*Heading()*z*Sex*Heading(Statistic)*Format(fmt())*(mean+sd) + ~ Status ) + mform <- matrix_form.tabular(tab) + page <- 1 + cat("Page ", page, " Full table\n\n") + cat(formatters::toString(mform)) + + # This shows automatic pagination, breaking up the + # table by rows + byrow <- formatters::pag_indices_inner(formatters::mf_rinfo(mform), + rlpp = 2, + min_siblings = 1) + for (i in seq_along(byrow)) { + mform2 <- matrix_form.tabular(tab[byrow[[i]], ]) + page <- page + 1 + cat("\nPage ", page, " Rows", byrow[[i]], "\n\n") + cat(formatters::toString(mform2)) + } + + # This gives the breaks by columns, counting the + # row label columns: + bycol <- formatters::vert_pag_indices(mform, cpp = 30, rep_cols = 2) + # Display the table with both kinds of breaks + for (i in seq_along(byrow)) { + rows <- byrow[[i]] + for (j in seq_along(bycol)) { + cols <- bycol[[j]] + cols <- cols[cols > 2] - 2 # cols includes the row labels + mform3 <- matrix_form.tabular(tab[rows, cols, drop = FALSE]) + page <- page + 1 + cat("\nPage ", page, "Rows", rows, "column", cols, "\n\n") + cat(formatters::toString(mform3)) + } + } + } Loading required namespace: formatters Page 1 Full table Status high low medium ———————————————————————————————————————— Female mean 4.85 5.11 5.03 sd (0.80) (1.05) (1.06) Male mean 4.97 4.71 5.33 sd (0.85) (0.87) (1.10) Page 2 Rows 1 2 Status high low medium —————————————————————————————————————— Female mean 4.9 5.1 5.0 sd (0.8) (1.1) (1.1) Page 3 Rows 3 4 Status high low medium —————————————————————————————————————— Male mean 4.97 4.71 5.33 sd (0.85) (0.87) (1.10) Error in formatters::vert_pag_indices(mform, cpp = 30, rep_cols = 2) : argument "fontspec" is missing, with no default Calls: <Anonymous> -> matrix_form -> matrix_form Execution halted Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc