Last updated on 2025-06-03 00:49:57 CEST.
Package | FAIL | NOTE | OK |
---|---|---|---|
GUIProfiler | 1 | 6 | 6 |
Current CRAN status: FAIL: 1, NOTE: 6, OK: 6
Version: 2.0.1
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Fernando de Villar<fdevillar@gmail.com>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: c(person(given = "Fernando",
family = "de Villar",
role = c("aut", "cre"),
email = "fdevillar@gmail.com"),
person(given = "Angel",
family = "Rubio",
role = "aut",
email = "arubio@ceit.es"))
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 2.0.1
Check: for non-standard things in the check directory
Result: NOTE
Found the following files/directories:
‘RRprof.out’
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
Version: 2.0.1
Check: examples
Result: FAIL
Check process probably crashed or hung up for 20 minutes ... killed
Most likely this happened in the example checks (?),
if not, ignore the following last lines of example output:
> compareMethods <- function() {
+ library(MASS)
+ # Call the functions
+ source(paste(temp,"/normal.solve.R",sep=""))
+ source(paste(temp,"/chol.solve.R",sep=""))
+ # Solving a big system of equations
+ nrows <- 1000
+ ncols <- 500
+ A <- matrix(rnorm(nrows*ncols),nrows,ncols)
+ b <- rnorm(nrows)
+ # Testing different possibilities
+ Sol1 <- qr.solve(A,b) # Using QR factorization
+ Sol2 <- coefficients(lm.fit(A,b)) # lm.fit, based on QR but with some overhead
+ Sol3 <- ginv(A) %*% b # Using the pseudoinverse based on SVD
+ Sol4 <- normal.solve(A,b) # Using a function based on the normal equations.
+ Sol5 <- chol.solve(A,b) # Using a function based on the Choleski factorization.
+ }
>
> # Dump these functions to three different files
>
> dump("normal.solve",file=paste(temp,"/normal.solve.R",sep=""))
> dump("chol.solve",file=paste(temp,"/chol.solve.R",sep=""))
> dump("compareMethods",file=paste(temp,"/compareMethods.R",sep=""))
> source(paste(temp,"/compareMethods.R",sep=""))
>
> # Profile the code
>
> RRprofStart()
> compareMethods()
> RRprofStop()
======== End of example output (where/before crash/hang up occured ?) ========
Flavor: r-devel-windows-x86_64