Description Usage Arguments Details Value References Examples
Brief description
1 2 3 |
data |
A dataset in the format of either |
air |
A logical scalar. Should we use air ( |
init |
A numeric vector of length 5. Optional initial estimates of the parameters R1, R2, R3, C1 and C2 of the 2TM. |
tau |
A numeric scalar. Time interval between successive measurements, in hours. |
ep |
A numeric scalar. Lower bound imposed on the (positive)
parameters R1, R2 and C1. Passed to the |
nls_control |
An optional list of control settings to be passed to
|
gnls_control |
An optional list of control settings to be passed to
|
use_gnls |
A logical scalar. In the |
... |
Further arguments to be pased to |
Add details
An object of class "nls"
returned from
nls
.
Gori, V. (2017) A novel method for the estimation of thermophysical properties of walls from short and seasonally independent in-situ surveys. Doctoral thesis. UCL (University College London). http://discovery.ucl.ac.uk/1568418/
1 2 3 4 5 6 7 8 9 10 11 12 13 | ### cwall_east --------
# Constant error variance
fit1 <- two_tm(data = cwall_east, hetero = FALSE)
fit1
logLik(fit1)
plot(fit1, form = resid(., type = "p") ~ fitted(.) | in_out)
# Different error variances for Qin and Qout
fit2 <- two_tm(data = cwall_east)
fit2
plot(fit2, form = resid(., type = "p") ~ fitted(.) | in_out)
logLik(fit2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.