FindModelType {synergyfinder}R 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)

Shuyu Zheng shuyu.zheng@helsinki.fi

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)

[Package synergyfinder version 1.10.2 Index]