checkm | R Documentation |
Trivial function that is a simple wrapper for frequent task: Bringing together the measured and modelled values, for instance to do a posteriori analyses of model performance.
checkm(modelled, measured, t.unit = NULL)
modelled |
A |
measured |
A |
t.unit |
If NULL, data in |
Case 1 (t.unit = NULL) Data are merged by calculating the difference in time between all timestamps in modelled
and all timestamps in measured
and identifying the minimum difference to each measured flux. If minimum difference between measured and modelled flux > 1h, no modelled flux is assigned. This approach is a bit slower but it is not necessary to give a correct t.unit
, which makes it less error prone.
Case 2 (t.unit != NULL) After rounding the timestamps in measured
according to t.unit
and transforming both timestamnps to character vectors modelled
and measured
are merged based on these timestamps and only data rows that are present in both are retained. Therefore t.unit
has to be specified according to the interval of the timestamps in modelled
.
Data.frame containing the corresponding rows of modelled
and measured
Gerald Jurasinski, gerald.jurasinski@uni-rostock.de
## See examples at reco.bulk
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.