Last updated on 2025-02-22 00:49:47 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 1.2-6 | 18.89 | 182.19 | 201.08 | OK | |
r-devel-linux-x86_64-debian-gcc | 1.2-6 | 12.75 | 126.00 | 138.75 | OK | |
r-devel-linux-x86_64-fedora-clang | 1.2-6 | 312.30 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 1.2-6 | 2628.20 | ERROR | |||
r-devel-macos-arm64 | 1.2-6 | 81.00 | OK | |||
r-devel-macos-x86_64 | 1.2-6 | 212.00 | OK | |||
r-devel-windows-x86_64 | 1.2-6 | 20.00 | 162.00 | 182.00 | OK | |
r-patched-linux-x86_64 | 1.2-6 | 16.05 | 169.87 | 185.92 | OK | |
r-release-linux-x86_64 | 1.2-6 | 18.04 | 172.35 | 190.39 | OK | |
r-release-macos-arm64 | 1.2-6 | 78.00 | OK | |||
r-release-macos-x86_64 | 1.2-6 | 121.00 | OK | |||
r-release-windows-x86_64 | 1.2-6 | 19.00 | 162.00 | 181.00 | OK | |
r-oldrel-macos-arm64 | 1.2-6 | 106.00 | OK | |||
r-oldrel-macos-x86_64 | 1.2-6 | 177.00 | OK | |||
r-oldrel-windows-x86_64 | 1.2-6 | 27.00 | 206.00 | 233.00 | OK |
Version: 1.2-6
Check: tests
Result: ERROR
Running ‘anisotropyChoice.R’ [10s/25s]
Running ‘biasCorr.R’ [10s/26s]
Running ‘findLocalBias.R’ [9s/23s]
Running ‘findRegionalBias.R’ [10s/28s]
Running ‘optimizingTest.R’ [39m/43m]
Running the tests in ‘tests/optimizingTest.R’ failed.
Complete output:
> options(error = recover)
> #test = TRUE
> test = FALSE
> mantest = FALSE
> set.seed(1)
> library(intamapInteractive)
Loading required package: intamap
Loading required package: sp
> library(gstat)
> #require(maptools)
> # for SIC2004 dataset
> data(sic2004)
> coordinates(sic.val) = ~x+y
> observations = sic.val["dayx"]
> coordinates(sic.grid)=~x+y
> predGrid = sic.grid
>
> #Finding the polygon for the candidate locations
> bb = bbox(predGrid)
> boun = SpatialPoints(data.frame(x=c(bb[1,1],bb[1,2],bb[1,2],bb[1,1],bb[1,1]),
+ y=c(bb[2,1],bb[2,1],bb[2,2],bb[2,2],bb[2,1])))
> Srl = Polygons(list(Polygon(boun)),ID = as.character(1))
> candidates = SpatialPolygonsDataFrame(SpatialPolygons(list(Srl)),
+ data = data.frame(ID=1))
>
> # Limits the number of prediction locations to have faster UK
> # computations
> nGrid = dim(coordinates(predGrid))[1]
> predGrid = predGrid[sample(seq(1,nGrid),1000),]
> # Fits the variogram model (using function fit.variogram from package
> # gstat)
> model = fit.variogram(variogram(dayx~x+y, sic.val), vgm(50, "Sph", 250000, 250))
> #plot(variogram(dayx~x+y, sic.val), model=model)
> # Computes the Mukv of the current network
> initMukv <- calculateMukv(observations, predGrid, model, formulaString = dayx~x+y)
Flavor: r-devel-linux-x86_64-fedora-gcc