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

Description Usage Arguments Value Author(s) Examples

View source: R/fit_dose_response_model.R

Description

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

Usage

1

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

1
2
3
4
5
6
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)

synergyfinder documentation built on April 4, 2021, 6 p.m.