Last updated on 2026-09-11 21:51:00 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 2.18 | 57.69 | 366.70 | 424.39 | OK | |
| r-devel-linux-x86_64-debian-gcc | 2.18 | 36.89 | 241.88 | 278.77 | OK | |
| r-devel-linux-x86_64-fedora-clang | 2.33 | 38.00 | 211.77 | 249.77 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 2.33 | 41.00 | 220.68 | 261.68 | OK | |
| r-devel-windows-x86_64 | 2.18 | 60.00 | 393.00 | 453.00 | OK | |
| r-patched-linux-x86_64 | 2.18 | 53.88 | 345.36 | 399.24 | OK | |
| r-release-linux-x86_64 | 2.18 | 0.34 | 1.78 | 2.12 | ERROR | |
| r-release-macos-arm64 | 2.18 | 11.00 | 60.00 | 71.00 | OK | |
| r-release-macos-x86_64 | 2.33 | 34.00 | 266.00 | 300.00 | OK | |
| r-release-windows-x86_64 | 2.18 | 57.00 | 316.00 | 373.00 | OK | |
| r-oldrel-macos-arm64 | 2.33 | 10.00 | 60.00 | 70.00 | ERROR | |
| r-oldrel-macos-x86_64 | 2.33 | 32.00 | 233.00 | 265.00 | OK | |
| r-oldrel-windows-x86_64 | 2.18 | 77.00 | 445.00 | 522.00 | OK |
Version: 2.18
Check: package dependencies
Result: ERROR
Package required but not available: ‘hdf5r’
See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
manual.
Flavor: r-release-linux-x86_64
Version: 2.33
Check: examples
Result: ERROR
Running examples in ‘cooltools-Ex.R’ failed
The error most likely occurred in:
> ### Name: kde2
> ### Title: Multi-dimensional adaptive kernel density estimation
> ### Aliases: kde2
>
> ### ** Examples
>
> # make a mock sample of n d-dimensional points from
> # three different components (1D line, 2D square, d-D normal distr)
> d = 3 # number of dimensions of mock point set; try to choose different values 2, 3, 4, ...
> n = 1e4 # number of particles per component
> set.seed(1)
> x = rbind(cbind(array(rep(runif(n,-1,1),2),c(n,2)),array(0,c(n,d-2))),
+ cbind(array(runif(2*n),c(n,2)),array(0,c(n,d-2))),
+ array(rnorm(d*n),c(n,d)))
>
> # grid total projected probability density
> npixels = 500 # number of pixels along a grid side
> q = midseq(-3,3,npixels)
> f1 = outer(dnorm(q),dnorm(q),'*')/3+outer(dunif(q),dunif(q),'*')/3
> q = seq(round(npixels/3),round(npixels*2/3))
> f1[q+npixels*(q-1)] = f1[q+npixels*(q-1)]+(npixels/6)^2/length(q)/3
>
> # recover 2D projected pdf from 3D point sample using different methods
> f2 = kde2(x, n=npixels, xlim=c(-3,3), ylim=c(-3,3), algorithm='basic', probability=TRUE)$field
> f3 = kde2(x, n=npixels, xlim=c(-3,3), ylim=c(-3,3), algorithm='kdefast', probability=TRUE)$field
> f4 = kde2(x, n=npixels, xlim=c(-3,3), ylim=c(-3,3), algorithm='kdenn', probability=TRUE)$field
Error in kde2(x, n = npixels, xlim = c(-3, 3), ylim = c(-3, 3), algorithm = "kdenn", :
Package EBImage is needed to run kde2 in with kdenn or manual algorithm.
Execution halted
Flavor: r-oldrel-macos-arm64