Replies: 1 comment
-
Any update on this issue? I would like to know if I can rely on the displayed bias and imprecision values or if have to manually calculate them (using SD and gamma/lambda or only SD?). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
In the Model bias and imprecision section of the Pmetrics manual (p. 53), the weighting calculation is described as follows:
There is no mention of the error model (i.e. gamma/lambda) in the section.
When viewing the PMop object after a successful run, the values in the
$obsSD
column, which are used for the calculation of bias and imprecision, are described in the manual as (p.20):However, these values does not match the SD you can manually calculate with
SD = C0 + C1*[obs] + C2*[obs]² + C3*[obs]³
.Instead, what is calculated is:
obsSD = SD*gamma
(using the gamma value of the last cycle). This formula match the error formula for gamma error models described p.14:obsSD = SD + lambda
(using the lambda value of the last cycle). However, this does not match the error formula for lambda:So my questions are:
Here is an example including a dataset, 2 models (gamma and lambda), the PMop objects generated and the final gamma/lambda values for each run:
example.zip
Beta Was this translation helpful? Give feedback.
All reactions