CRAN Package Check Results for Maintainer ‘Duncan Murdoch <murdoch.duncan at gmail.com>’

Last updated on 2024-06-20 01:52:54 CEST.

Package ERROR NOTE OK
ellipse 13
orientlib 13
patchDVI 13
plotrix 13
rgl 11 2
rgl2gltf 13
RmdConcord 13
tables 2 11

Package ellipse

Current CRAN status: OK: 13

Package orientlib

Current CRAN status: OK: 13

Package patchDVI

Current CRAN status: OK: 13

Package plotrix

Current CRAN status: OK: 13

Package rgl

Current CRAN status: NOTE: 11, OK: 2

Additional issues

M1mac

Version: 1.3.1
Check: compiled code
Result: NOTE File ‘rgl/libs/rgl.so’: Found non-API call to R: ‘Rf_psmatch’ Compiled code should not call non-API entry points in R. See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual. 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

Version: 1.3.1
Check: installed package size
Result: NOTE installed size is 8.3Mb sub-directories of 1Mb or more: doc 3.0Mb fonts 1.5Mb Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-windows-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 1.3.1
Check: for detritus in the temp directory
Result: NOTE Found the following files/directories: ‘Crashpad’ Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc

Version: 1.3.1
Check: compiled code
Result: NOTE File 'rgl/libs/x64/rgl.dll': Found non-API call to R: 'Rf_psmatch' Compiled code should not call non-API entry points in R. See 'Writing portable packages' in the 'Writing R Extensions' manual. Flavor: r-devel-windows-x86_64

Package rgl2gltf

Current CRAN status: OK: 13

Additional issues

noRemap

Package RmdConcord

Current CRAN status: OK: 13

Package tables

Current CRAN status: ERROR: 2, OK: 11

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