Used to fit monotonically increasing non-parametric dose-response relationship following the method of Owen et al. (2015) )

dnonparam(direction = "increasing")

Arguments

direction

Can take either "increasing" or "decreasing" to indicate the monotonic direction of the dose-response relationship

Value

An object of class("dosefun")

References

Owen RK, Tincello DG, Keith RA (2015). “Network meta-analysis: development of a three-level hierarchical modeling approach incorporating dose-related constraints.” Value Health, 18(1), 116-26. ISSN 1524-4733 (Electronic) 1098-3015 (Linking), doi:10.1016/j.jval.2014.10.006 , https://pubmed.ncbi.nlm.nih.gov/25595242/.

Examples

# Monotonically increasing dose-response
dnonparam(direction="increasing")
#> $name
#> [1] "nonparam"
#> 
#> $direction
#> [1] "increasing"
#> 
#> $fun
#> ~d.1
#> <environment: 0x55c4626cc578>
#> 
#> $jags
#> [1] "d.1[dose[i,k], agent[i,k]]"
#> 
#> $apool
#> [1] NA
#> 
#> $bname
#> [1] NA
#> 
#> attr(,"class")
#> [1] "dosefun"

# Monotonically decreasing dose-response
dnonparam(direction="decreasing")
#> $name
#> [1] "nonparam"
#> 
#> $direction
#> [1] "decreasing"
#> 
#> $fun
#> ~d.1
#> <environment: 0x55c4625cbab8>
#> 
#> $jags
#> [1] "d.1[dose[i,k], agent[i,k]]"
#> 
#> $apool
#> [1] NA
#> 
#> $bname
#> [1] NA
#> 
#> attr(,"class")
#> [1] "dosefun"