CRAN Package Check Results for Package venn

Last updated on 2024-06-13 05:59:25 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.12 3.25 36.42 39.67 OK
r-devel-linux-x86_64-debian-gcc 1.12 2.97 26.65 29.62 ERROR
r-devel-linux-x86_64-fedora-clang 1.12 53.68 OK
r-devel-linux-x86_64-fedora-gcc 1.12 48.52 OK
r-devel-windows-x86_64 1.12 4.00 53.00 57.00 OK
r-patched-linux-x86_64 1.12 3.31 35.91 39.22 OK
r-release-linux-x86_64 1.12 2.82 36.00 38.82 OK
r-release-macos-arm64 1.12 19.00 OK
r-release-macos-x86_64 1.12 43.00 OK
r-release-windows-x86_64 1.12 5.00 54.00 59.00 OK
r-oldrel-macos-arm64 1.12 24.00 OK
r-oldrel-macos-x86_64 1.12 58.00 OK
r-oldrel-windows-x86_64 1.12 5.00 56.00 61.00 OK

Check Details

Version: 1.12
Check: package dependencies
Result: NOTE Packages suggested but not available for checking: 'ggplot2', 'ggpolypath' Flavor: r-devel-linux-x86_64-debian-gcc

Version: 1.12
Check: examples
Result: ERROR Running examples in ‘venn-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: venn > ### Title: Draw and display a Venn diagram > ### Aliases: venn > ### Keywords: functions > > ### ** Examples > > > # A simple Venn diagram with 3 sets > venn(3) > > # with a vector of counts: 1 for "000", 2 for "001" etc. > venn(3, counts = 1:8) > > # display the first whole set > venn("1--") > > # same with > venn("A", snames = "A, B, C") > > # an equivalent command, from the union of all intersections > venn("100 + 110 + 101 + 111") > > # same with > venn("A~B~C + AB~C + A~BC + ABC") > > # adding the labels for the intersections > venn("1--", ilabels = TRUE) > > # using different parameters for the borders > venn(4, lty = 5, col = "navyblue") > > # using ellipses > venn(4, lty = 5, col = "navyblue", ellipse = TRUE) > > # a 5 sets Venn diagram > venn(5) > > # a 5 sets Venn diagram using ellipses > venn(5, ellipse = TRUE) > > # a 5 sets Venn diagram with intersection labels > venn(5, ilabels = TRUE) > > # and a predefined color style > venn(5, ilabels = TRUE, zcolor = "style") > > # a union of two sets > venn("1---- + ----1") > > # same with > venn("A + E", snames = "A, B, C, D, E") > > # with different colors > venn("1---- , ----1", zcolor = "red, blue") > > # same with > venn("A, E", snames = "A, B, C, D, E", zcolor = "red, blue") > > # same colors for the borders > venn("1---- , ----1", zcolor = "red, blue", col = "red, blue") > > # 6 sets diagram > venn(6) > > # 7 sets "Adelaide" > venn(7) > > > # artistic version > venn(c("1000000", "0100000", "0010000", "0001000", + "0000100", "0000010", "0000001", "1111111")) > > # without all borders > venn(c("1000000", "0100000", "0010000", "0001000", + "0000100", "0000010", "0000001", "1111111"), + borders = FALSE) > > > # using sum of products notation > venn("A + B~C", snames = "A, B, C, D") > > > # when x is a list > set.seed(12345) > x <- list(First = 1:20, Second = 10:30, Third = sample(25:50, 15)) > venn(x, ilabels = "counts") > > > # when x is a dataframe > set.seed(12345) > x <- as.data.frame(matrix(sample(0:1, 150, replace = TRUE), ncol = 5)) > venn(x, ilabels = "counts") > > > # producing a ggplot2 graphics > venn(x, ilabels = "counts", ggplot = TRUE) Error: Packages "ggplot2" and "ggpolypath" are needed to make this work, please install. Execution halted Flavor: r-devel-linux-x86_64-debian-gcc