dnonparam.Rd
Used to fit monotonically increasing non-parametric dose-response relationship following the method of Owen et al. (2015) )
dnonparam(direction = "increasing")
Can take either "increasing"
or "decreasing"
to indicate the monotonic direction
of the dose-response relationship
An object of class("dosefun")
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/.
# Monotonically increasing dose-response
dnonparam(direction="increasing")
#> $name
#> [1] "nonparam"
#>
#> $direction
#> [1] "increasing"
#>
#> $fun
#> ~d.1
#> <environment: 0x55e26b775590>
#>
#> $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: 0x55e26c593ea0>
#>
#> $jags
#> [1] "d.1[dose[i,k], agent[i,k]]"
#>
#> $apool
#> [1] NA
#>
#> $bname
#> [1] NA
#>
#> attr(,"class")
#> [1] "dosefun"