File: dic.fit.Rd

package info (click to toggle)
r-cran-coarsedatatools 0.6-6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 328 kB
  • sloc: makefile: 2
file content (83 lines) | stat: -rw-r--r-- 3,275 bytes parent folder | download
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dic.fit.R
\name{dic.fit}
\alias{dic.fit}
\title{censored survival data}
\usage{
dic.fit(
  dat,
  start.par2 = log(2),
  opt.method = "L-BFGS-B",
  par1.int = c(log(0.5), log(13)),
  par2.int = c(log(1.01), log(log(5))),
  ptiles = c(0.05, 0.95, 0.99),
  dist = "L",
  n.boots = 0,
  ...
)
}
\arguments{
\item{dat}{a matrix with columns named "EL", "ER", "SL", "SR", corresponding
to the left (L) and right (R) endpoints of the windows of possible
exposure (E) and symptom onset (S). Also, a "type" column must be
specified and have entries with 0, 1, or 2, corresponding to doubly
interval-censored, single interval-censored or exact observations,
respectively.}

\item{start.par2}{starting value for 2nd parameter of desired distribution}

\item{opt.method}{method used by optim}

\item{par1.int}{the log-scale interval of possible median values (in the
same units as the observations in dat).  Narrowing this interval can help
speed up convergence of the algorithm, but care must be taken so that
possible values are not excluded or that the maximization does not return
a value at an endpoint of this interval.}

\item{par2.int}{the log-scale interval of possible dispersion values}

\item{ptiles}{percentiles of interest}

\item{dist}{what distribution to use to fit the data. Default "L" for
log-normal. "G" for gamma, and "W" for Weibull.}

\item{n.boots}{number of bootstrap resamples (0 means that asymptotic results are desired)}

\item{...}{additional options passed to optim}
}
\value{
a cd.fit S4 object.
}
\description{
\code{dic.fit} fits a parametric accelerated failure time model to survival
data. It was developed with the application to estimating incubation periods of infectious diseases 
in mind but is applicable to many general problems.
The data can be a mixture of doubly interval-censored, single
interval-censored or exact observations from a single univariate
distribution. Currently, three distributions are supported: log-normal,
gamma, and Weibull. (The Erlang distribution is supported in the
\code{dic.fit.mcmc} function, which implements an MCMC version of this
code.) We use a consistent (par1, par2) notation for each distribution, they
map in the following manner: \deqn{Log-normal(meanlog=par1, sdlog=par2)}
\deqn{Gamma(shape=par1, scale=par2)} \deqn{Weibull(shape=par1, scale=par2)}
Standard errors of parameters can be computed using closed-form asymptotic
formulae or using a bootstrap routine for log-normal and gamma models.
Currently, bootstrap SEs are the only option for the gamma models, which do
not have a closed form for the percentiles. \code{dic.fit()} calculates
asymptotic SEs by default, or whenever the \code{n.boots} option is set to
0. To compute bootstrap SEs, just set \code{n.boots} to be greater than
zero. \code{\link{dic.fit.mcmc}} also allows for Markov Chain Monte Carlo
fitting of these three parametric models and Erlang models as well.
}
\examples{
data(fluA.inc.per)
dic.fit(fluA.inc.per, dist="L")
}
\references{
Reich NG et al.  Statistics in Medicine.  Estimating incubation
  periods with coarse data. 2009.
  \url{https://pubmed.ncbi.nlm.nih.gov/19598148/}
}
\seealso{
\code{\link{cd.fit}}, \code{\link{dic.fit.mcmc}}
}