View source: R/cv_estimation_tag_functions.R
best_CV_estimation | R Documentation |
A function to select the best CV by combining the replicates in duplicates. The function has been build for up to to 3 replicates so far
best_CV_estimation(dataCV, slide_id, lab_replicates, cv_cut_off)
dataCV |
A data frame |
slide_id |
A character string containing the identifier of the data frame variable. |
lab_replicates |
A numeric value indicating the number of lab replicates. |
cv_cut_off |
a numeric value for the CV cut off. Should be between 0-100 |
Select set of replicates with the best CV
A data frame with the best CV's estimated
dataC <- readr::read_csv(system.file("extdata", "dataC.csv", package="protGear")) ## this file has 3 lab replicates and the default names dataCV <- cv_estimation(dataC ,lab_replicates=3) best_CV_estimation(dataCV,slide_id = "iden", lab_replicates = 3, cv_cut_off = 20)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.