summary.HT_fit: Summarize the results of a dose response fit

Description Usage Arguments Value Examples

View source: R/HTDoseResponseCurve.R

Description

Summarize the results of a dose response fit

Usage

1
2
## S3 method for class 'HT_fit'
summary(object, ...)

Arguments

object

fit object

...

other parameters, currently ignored

Value

none

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
sample_types = rep( c(rep("line1",3), rep("line2",3)), 5)
treatments = c(rep("DMSO",6), rep("drug",24))
concentrations = c( rep(0,6),rep(200,6), rep(500,6),rep(1000,6),rep(5000,6))
values=c(100,99,100,90,91,92,99,97,99,89,87,88,86,89,88,56,59,58,66,65,67,
         25,23,24,42,43,46,4,5,9)
hours = rep(48, length(values))
plate_id = "plate_1"
ds = create_dataset( sample_types=sample_types, treatments=treatments, 
                     concentrations=concentrations, hours=hours, 
                     values=values, plate_id=plate_id, 
                     negative_control = "DMSO")
library(drc)
# Fit model using three-parameter log-logistic function
fit_1 = fit_DRC(ds, sample_types=c("line1", "line2"), treatments=c("drug"), 
                hour = 48, fct=drc::LL.3() )
summary(fit_1)

DavidQuigley/HTDoseResponseCurve documentation built on Jan. 23, 2021, 5:10 a.m.