| make_meas_object {baker} | R Documentation |
Make measurement slice
Description
Wrap the information about a particular type of measurement, e.g., NPPCR. NB: add example! copy some from the vignette file.
Usage
make_meas_object(patho, specimen, test, quality, cause_list, sep_char = "_")
Arguments
patho |
A vector of pathogen names |
specimen |
Specimen name |
test |
Test name |
quality |
Quality category: any of "BrS", "SS" or "GS". |
cause_list |
The vector of potential latent status |
sep_char |
a character string that separate the pathogen names and the
specimen-test pair; Default to |
Value
A list with measurement information
qualitysame as argumentpathosame as argumentname_in_datathe names used in the raw data to locate these measurementstemplatea mapping frompathotocause_list.NROW = length(cause_list)+1;NCOL = length(patho). This value is crucial in model fitting to determine which measurements are informative of a particular category of latent status.specimensame as argumenttestsame as argumentnm_spec_testpastespecimenandtesttogether
See Also
Examples
make_meas_object(
patho = c("A","B","C","D","E","F"),
specimen = "MBS",
test = "1",
quality = "BrS",
cause_list = c("A","B","C","D","E"))