# Load the dataset
data(troponin_precision)
head(troponin_precision)
# Precision study with multiple concentration levels
prec <- precision_study(
data = troponin_precision,
value = "value",
sample = "level",
day = "day",
run = "run"
)
print(prec)
# Results for each concentration level
names(prec$by_sample)
# Generate precision profile
profile <- precision_profile(prec, cv_targets = c(10, 20))
print(profile)
plot(profile)
# Functional sensitivity at 10% CV
profile$functional_sensitivity
Run the code above in your browser using DataLab