R/model_predict.R

Defines functions model_predict

model_predict <- function(tbl, model){
  data.frame(curve = tbl[["runs"]],
             prediction = predict(model, newdata = tbl)[["data"]][["response"]])
}
PrzeChoj/predPCR documentation built on Sept. 8, 2020, 11:44 p.m.