Learn R Programming

intubate (version 1.0.0)

drc: Interfaces for drc package for data science pipelines.

Description

Interfaces to drc functions that can be used in a pipeline implemented by magrittr.

Usage

ntbt_drm(data, ...)

Arguments

data
data frame, tibble, list, ...
...
Other arguments passed to the corresponding interfaced function.

Value

Object returned by interfaced function.

Details

Interfaces call their corresponding interfaced function.

Examples

Run this code
## Not run: 
# library(intubate)
# library(magrittr)
# library(drc)
# 
# ## ntbt_drm: Fitting dose-response models
# ## Original function to interface
# drm(rootl ~ conc, data = ryegrass, fct = W2.4())
# 
# ## The interface puts data as first parameter
# ntbt_drm(ryegrass, rootl ~ conc, fct = W2.4())
# 
# ## so it can be used easily in a pipeline.
# ryegrass %>%
#   ntbt_drm(rootl ~ conc, fct = W2.4())
# ## End(Not run)

Run the code above in your browser using DataLab