micdata.Rd
Example data set of a MIC experiment, taken from Turnidge et al. (2006)
Data frame with two columns:
vector of antibiotic concentrations
frequency of detected MIC concentrations
https://clsi.org/education/microbiology/ecoffinder/
Turnidge, J., Kahlmeter, G., Kronvall, G. (2006) Statistical characterization of bacterial wild-type MIC value distributions and the determination of epidemiological cut-off values. Clin Microbial Infect 12: 418-425 doi: 10.1111/j.1469-0691.2006.01377.x
## replace NA values with zero micdata$freq[is.na(micdata$freq)] <- 0 plot(cumsum(freq) ~ log2(conc), data=micdata, type="l")