1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
R version 4.0.2 (2020-06-22) -- "Taking Off Again"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin17.0 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
> # fields is a package for analysis of spatial data written for
> # the R software environment .
> # Copyright (C) 2018
> # University Corporation for Atmospheric Research (UCAR)
> # Contact: Douglas Nychka, nychka@ucar.edu,
> # National Center for Atmospheric Research,
> # PO Box 3000, Boulder, CO 80307-3000
> #
> # This program is free software; you can redistribute it and/or modify
> # it under the terms of the GNU General Public License as published by
> # the Free Software Foundation; either version 2 of the License, or
> # (at your option) any later version.
> # This program is distributed in the hope that it will be useful,
> # but WITHOUT ANY WARRANTY; without even the implied warranty of
> # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> # GNU General Public License for more details.
>
> suppressMessages(library(fields))
> #
> #
> # test of fixed lambda case
> # Check against linear algebra
> #
>
> options( echo=FALSE)
Testing: Compare d coef
PASSED test at tolerance 1e-08
Testing: Compare c coef
PASSED test at tolerance 1e-08
Testing: Compare d coef fixed lambda
PASSED test at tolerance 1e-08
Testing: Compare c coef fixed lambda
PASSED test at tolerance 1e-08
Testing: d coef Krig.coef
PASSED test at tolerance 1e-08
Testing: c coef Krig.coef
PASSED test at tolerance 1e-08
Testing: d coef Krig.coef fixed
PASSED test at tolerance 1e-08
Testing: c coef Krig.coef fixed
PASSED test at tolerance 1e-08
Testing: Amatrix no reps
PASSED test at tolerance 5e-08
Testing: d coef new y
PASSED test at tolerance 1e-08
Testing: c coef new y
PASSED test at tolerance 1e-08
Testing: d coef new y fixed
PASSED test at tolerance 1e-08
Testing: c coef new y fixed
PASSED test at tolerance 1e-08
Testing: d coef several new y fixed
PASSED test at tolerance 1e-08
Testing: c coef several new y fixed
PASSED test at tolerance 1e-08
Testing: Tps with fixed lam
PASSED test at tolerance 1e-08
Testing: Tps with fixed df
PASSED test at tolerance 1e-08
Testing: Krig with fixed lam argument
PASSED test at tolerance 1e-08
Testing: Krig with fixed lam argument
PASSED test at tolerance 1e-08
Warning:
Grid searches over lambda (nugget and sill variances) with minima at the endpoints:
(REML) Restricted maximum likelihood
minimum at right endpoint lambda = 2983.87 (eff. df= 3.001004 )
Testing: d coef
PASSED test at tolerance 1e-08
Testing: c coef
PASSED test at tolerance 1e-08
Testing: d new y Krig.coef
PASSED test at tolerance 1e-08
Testing: c new y Krig.coef
PASSED test at tolerance 1e-08
Testing: d fixed case
PASSED test at tolerance 1e-08
Testing: c fixed case
PASSED test at tolerance 1e-08
Warning:
Grid searches over lambda (nugget and sill variances) with minima at the endpoints:
(REML) Restricted maximum likelihood
minimum at right endpoint lambda = 2983.87 (eff. df= 3.001004 )
Testing: d new y
PASSED test at tolerance 1e-08
Testing: c new y
PASSED test at tolerance 1e-08
Testing: d new y fixed
PASSED test at tolerance 1e-08
Testing: c new y fixed
PASSED test at tolerance 1e-08
Warning:
Grid searches over lambda (nugget and sill variances) with minima at the endpoints:
(REML) Restricted maximum likelihood
minimum at right endpoint lambda = 42494.84 (eff. df= 3.00092 )
Testing: d reps
PASSED test at tolerance 1e-08
Testing: c reps
PASSED test at tolerance 1e-08
Warning:
Grid searches over lambda (nugget and sill variances) with minima at the endpoints:
(REML) Restricted maximum likelihood
minimum at right endpoint lambda = 42494.84 (eff. df= 3.00092 )
Testing: pure sums of squares
PASSED test at tolerance 1e-08
Warning:
Grid searches over lambda (nugget and sill variances) with minima at the endpoints:
(REML) Restricted maximum likelihood
minimum at right endpoint lambda = 42494.84 (eff. df= 3.00092 )
Testing: Amatrix prediction
PASSED test at tolerance 1e-08
PASSED test at tolerance 1e-08
Testing: trace from A matrix
PASSED test at tolerance 1e-08
PASSED test at tolerance 1e-08
Testing: A matrix predict with new y
PASSED test at tolerance 1e-08
Testing: A matrix predict compared to collapsed yM
PASSED test at tolerance 1e-08
Testing: pure sums of squares
PASSED test at tolerance 1e-08
Testing: check trace
PASSED test at tolerance 1e-08
> proc.time()
user system elapsed
0.813 0.070 0.879
|