findNTC: Find the non-toxic concentration.

Description Usage Arguments Value Examples

View source: R/findNTC.R

Description

If you use the result of this calculation in your research, please cite Stadnicka-Michalak et al.

Usage

1
findNTC(bendrObj)

Arguments

bendrObj

A bendr result object

Value

The absolute (non-logged) non-toxic concentration value

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
require(tibble)
drc.formula = effect ~ 100 / (1 + 10^((logEC50-logconc) * slope))
rdata = as_tibble(
data.frame(
   conc=c(0.1,1,10,100,1000,5000),
   replicateA=c(1,12,27,65,88,100),
   replicateB=c(2,16,21,62,81,100),
   replicateC=c(4,15,21,61,85,96)
 ))

fitObjectRep = fitdr_replicates(drc.formula,rdata,2:4,conc)
ntc = findNTC(fitObjectRep)

alxbetz/bendr documentation built on Aug. 2, 2020, 2:06 a.m.