check_order | R Documentation |
This function performs a simple consistency check on an observed and simulated dataset to make sure they are consistent with respect to ordering as required by the other functions used in the VPC calculation.
check_order(obs, sim, tol = 1e-05)
obs , sim |
A 'data.frame' with 2 columns (see Details). |
tol |
A tolerance for comparing time values. |
The consistency check is performed by comparing a combination of unique
subject identifier (ID) and time. Both data.frame
objects must be given with
those in positions 1 and 2, respectively.
The number of replicates contained in 'sim'.
observed
, simulated
.
require(data.table)
check_order(obs_data[, .(ID, TIME)], sim_data[, .(ID, TIME)])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.