CRAN Package Check Results for Package DescTools

Last updated on 2024-06-08 03:49:29 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.99.54 113.70 432.57 546.27 NOTE
r-devel-linux-x86_64-debian-gcc 0.99.54 84.02 310.53 394.55 NOTE
r-devel-linux-x86_64-fedora-clang 0.99.54 727.08 NOTE
r-devel-linux-x86_64-fedora-gcc 0.99.54 394.05 NOTE
r-devel-windows-x86_64 0.99.54 98.00 441.00 539.00 NOTE
r-patched-linux-x86_64 0.99.54 118.60 411.96 530.56 NOTE
r-release-linux-x86_64 0.99.54 101.33 404.61 505.94 NOTE
r-release-macos-arm64 0.99.54 151.00 NOTE
r-release-macos-x86_64 0.99.54 230.00 NOTE
r-release-windows-x86_64 0.99.54 103.00 416.00 519.00 FAIL
r-oldrel-macos-arm64 0.99.54 164.00 NOTE
r-oldrel-macos-x86_64 0.99.54 332.00 NOTE
r-oldrel-windows-x86_64 0.99.54 123.00 543.00 666.00 NOTE

Check Details

Version: 0.99.54
Check: package dependencies
Result: NOTE Package suggested but not available for checking: ‘RDCOMClient’ 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-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-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: 0.99.54
Check: installed package size
Result: NOTE installed size is 6.1Mb sub-directories of 1Mb or more: R 1.7Mb doc 1.8Mb help 1.6Mb 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: 0.99.54
Check: Rd cross-references
Result: NOTE Undeclared packages ‘ineq’, ‘randtests’, ‘Hmisc’, ‘plotrix’, ‘caret’, ‘pcaPP’, ‘polycor’, ‘lmtest’, ‘car’, ‘gmp’, ‘vcdExtra’, ‘chron’, ‘coin’, ‘caTools’, ‘forecast’, ‘sfsmisc’, ‘vcd’, ‘areaplot’, ‘corrgram’, ‘UsingR’, ‘memisc’, ‘gtools’, ‘BSDA’, ‘prettyR’ in Rd xrefs Flavor: r-devel-linux-x86_64-fedora-clang

Version: 0.99.54
Check: examples
Result: ERROR Running examples in 'DescTools-Ex.R' failed The error most likely occurred in: > ### Name: PlotPolar > ### Title: Plot Values on a Circular Grid > ### Aliases: PlotPolar > ### Keywords: hplot > > ### ** Examples > > testlen <- c(sin(seq(0, 1.98*pi, length=100))+2+rnorm(100)/10) > testpos <- seq(0, 1.98*pi, length=100) > > PlotPolar(testlen, testpos, type="l", main="Test Polygon", col="blue") > PolarGrid(ntheta=9, col="grey", lty="solid", lblradians=TRUE) > > # start at 12 o'clock and plot clockwise > PlotPolar(testlen, -(testpos - pi/2), type="p", main="Test Polygon", + col="green", pch=16) > > PolarGrid(ntheta = rev(seq(0, 2*pi, by=2*pi/9) + pi/2), + alabels=Format(seq(0, 2*pi, by=2*pi/9), digits=2)[-10], col="grey", + lty="solid", lblradians=TRUE) > > > # just because of it's beauty > t <- seq(0,2*pi,0.01) > PlotPolar( r=sin(2*t)*cos(2*t), theta=t, type="l", lty="dashed", col="red" ) > PolarGrid() > > > # use some filled polygons > ions <- c(3.2,5,1,3.1,2.1,5) > ion.names <- c("Na","Ca","Mg","Cl","HCO3","SO4") > > PlotPolar(r = ions, type="l", fill="yellow") > > # the same, but let's have a grid first > PlotPolar(r = ions, type="l", lwd=2, col="blue", main="Ions", + panel.first=PolarGrid(nr=seq(0, 6, 1)) ) > > # leave the radial grid out > PlotPolar(r = ions, type="l", fill="yellow") > PolarGrid(nr = NA, ntheta = length(ions), alabels = ion.names, + col = "grey", lty = "solid" ) > > # display radial lines > PlotPolar(r = ions, type="h", col="blue", lwd=3) > # add some points > PlotPolar(r = ions, type="p", pch=16, add=TRUE, col="red", cex=1.5) > > # spiderweb (not really recommended...) > posmat <- matrix(sample(2:9,30,TRUE),nrow=3) > PlotPolar(posmat, type="l", main="Spiderweb plot", col=2:4, lwd=1:3) > PolarGrid(nr=NA, ntheta=ncol(posmat), alabels=paste("X", 1:ncol(posmat), sep=""), + col="grey", lty="solid" ) > > # example from: The grammar of graphics (L. Wilkinson) > data("UKgas") > m <- matrix(UKgas, ncol=4, byrow=TRUE) > cols <- c(SetAlpha(rep("green", 10), seq(0,1,0.1)), + SetAlpha(rep("blue", 10), seq(0,1,0.1)), + SetAlpha(rep("orange", 10), seq(0,1,0.1))) Warning in mapply(FUN = function (col, alpha.f = 1, red.f = 1, green.f = 1, : longer argument not a multiple of length of shorter Warning in mapply(FUN = function (col, alpha.f = 1, red.f = 1, green.f = 1, : longer argument not a multiple of length of shorter Warning in mapply(FUN = function (col, alpha.f = 1, red.f = 1, green.f = 1, : longer argument not a multiple of length of shorter > > PlotPolar(r=m, type="l", col=cols, lwd=2 ) > PolarGrid(ntheta=4, alabels=c("Winter","Spring","Summer","Autumn"), lty="solid") > legend(x="topright", legend=c(1960,1970,1980), fill=c("green","blue","orange")) > > > # radarplot (same here, consider alternatives...) > data(mtcars) > d.car <- scale(mtcars[1:6,1:7], center=FALSE) Warning in scale(mtcars[1:6, 1:7], center = FALSE) : internal error 5 in R_decompress3 Error in scale(mtcars[1:6, 1:7], center = FALSE) : lazy-load database 'D:\RCompile\recent\R-4.4.0\library\datasets/data/Rdata.rdb' is corrupt Execution halted Flavor: r-release-windows-x86_64

Version: 0.99.54
Check: HTML version of manual
Result: FAIL
Flavor: r-release-windows-x86_64