calc_std_conc(.standard_sample = c(7:0),
.start_concentration = 5000)
suppressWarnings(
# Sample 5 is missing - raises a warning
calc_std_conc(.standard_sample = c(7, 6, 4, 3, 2, 1, 0),
.start_concentration = 5000)
)
calc_std_conc(.standard_sample = rep(c(7:0), 2),
.start_concentration = 5000)
calc_std_conc(.standard_sample = c(9:0),
.start_concentration = 5000)
calc_std_conc(.standard_sample = c(letters[1:7], 0),
.start_concentration = 5000)
calc_std_conc(.standard_sample = c(letters[1:7], 0, 1),
.start_concentration = 5000)
calc_std_conc(.standard_sample = c(7:1, 0),
.start_concentration = 5000,
.dilution_factor = c(1, 2, 2, 2, 4, 6, 6, 0))
# If 0 exists it is always set to 0
calc_std_conc(.standard_sample = c(7:1, 0),
.start_concentration = 5000,
.dilution_factor = c(1, 2, 2, 2, 4, 6, 6, 100000))
calc_std_conc(.standard_sample = c(8:1),
.start_concentration = 5000,
.dilution_factor = c(1, 2, 2, 2, 4, 6, 6, 100000))
Run the code above in your browser using DataLab