1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/zib.R
\name{PD}
\alias{PD}
\title{Dose response calculation for binomial regression models}
\usage{
PD(
model,
intercept = 1,
slope = 2,
prob = NULL,
x,
level = 0.5,
ci.level = 0.95,
vcov,
family,
EB = NULL
)
}
\arguments{
\item{model}{Model object or vector of parameter estimates}
\item{intercept}{Index of intercept parameters}
\item{slope}{Index of intercept parameters}
\item{prob}{Index of mixture parameters (only relevant for
\code{zibreg} models)}
\item{x}{Optional weights
length(x)=length(intercept)+length(slope)+length(prob)}
\item{level}{Probability at which level to calculate dose}
\item{ci.level}{Level of confidence limits}
\item{vcov}{Optional estimate of variance matrix of parameter
estimates}
\item{family}{Optional distributional family argument}
\item{EB}{Optional ratio of treatment effect and adverse effects
used to find optimal dose (regret-function argument)}
}
\description{
Dose response calculation for binomial regression models
}
\author{
Klaus K. Holst
}
|