R/fit_nonparametric.R

Defines functions fit_nonparametric

Documented in fit_nonparametric

#' Fit a single sample with local non-parametric
#'
#' @param x Time vector
#' @param y Growth vector
#'
#' @export


fit_nonparametric = function(x, y, h = 4) {
  require("cellGrowth")

  fit = fitCellGrowth(x = x, z = y, locfit.h = h)

  return(fit)
}
jeffkimbrel/platereadR documentation built on Dec. 1, 2023, 1:54 a.m.