The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Last updated on 2026-09-22 07:50:30 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 2.33 | 53.26 | 337.66 | 390.92 | OK | |
| r-devel-linux-x86_64-debian-gcc | 2.33 | 33.30 | 224.32 | 257.62 | OK | |
| r-devel-linux-x86_64-fedora-clang | 2.33 | 38.00 | 212.89 | 250.89 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 2.33 | 38.00 | 211.32 | 249.32 | OK | |
| r-devel-windows-x86_64 | 2.33 | 56.00 | 384.00 | 440.00 | OK | |
| r-patched-linux-x86_64 | 2.33 | 48.46 | 320.06 | 368.52 | OK | |
| r-release-linux-x86_64 | 2.33 | 48.04 | 318.56 | 366.60 | OK | |
| r-release-macos-arm64 | 2.33 | 11.00 | 65.00 | 76.00 | OK | |
| r-release-macos-x86_64 | 2.33 | 34.00 | 266.00 | 300.00 | OK | |
| r-release-windows-x86_64 | 2.33 | 56.00 | 311.00 | 367.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.33 | 68.00 | 399.00 | 467.00 | OK |
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
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.