FindModelType: Find the Type of Model Used for Fitting Dose Response Data

View source: R/fit_dose_response_model.R

FindModelTypeR Documentation

Find the Type of Model Used for Fitting Dose Response Data

Description

FindModelType will extract the model type ("LL.4" or "L.4) eventually used in funciton FitDoseResponse

Usage

FindModelType(model)

Arguments

model

An object of class 'drc'. It is generated by function FitDoseResponse

Value

A character either "LL.4" or "L.4". It indicates the type of model used for fitting dose response data.

Author(s)

Examples

df <- data.frame(
  response = c(0, 29, 59, 60, 75, 90),
  dose = c(0.00, 9.7656, 39.0626, 156.25, 625, 2500)
)
model <- FitDoseResponse(df)
model.type <- FindModelType(model)

shuyuzheng/synergyfinder documentation built on Feb. 20, 2023, 11:33 p.m.