mlest: Title

Description Usage Arguments Examples

Description

Title

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
mlest(
  data.ld,
  distribution,
  relationship.parameters = 1,
  explan.vars = NULL,
  gamthr = 0,
  theta.start = NULL,
  parameter.fixed = NULL,
  intercept = T,
  kprint = 0,
  maxit = 500,
  debug1 = F,
  genforce = F,
  embedded = F,
  ...
)

Arguments

data.ld
distribution
relationship.parameters
explan.vars
gamthr
theta.start
parameter.fixed
intercept
kprint
maxit
debug1
genforce
embedded
...

Examples

 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
## Not run: 

berkson200.ld <- frame.to.ld(berkson200,
                             response.column = c(1,2),
                             censor.column = 3,
                             case.weight.column = 4,
                             time.units = "1/5000 Seconds")

summary(berkson200.ld)

plot(berkson200.ld)
plot(berkson200.ld, dist = "Exponential")

cdfest(berkson200.ld)

berkson200.mle.exp <- mlest(berkson200.ld, 
                            distribution = "Exponential")

print(berkson200.mle.exp)

doatrun.ld <- frame.to.ld(doatrun,
                          response.column = c(1,2),
                          censor.column = 3, 
                          case.weight.column = 4,
                          truncation.response.column = 5, 
                          truncation.type.column = 6, 
                          data.title = "DOA Truncated Data", 
                          time.units = "Hours")

summary(doatrun.ld)

cdfest(doatrun.ld)

doatrun.mle.weib <- mlest(doatrun.ld,"Weibull")

print(doatrun.mle.weib)

## End(Not run)

Auburngrads/SMRD documentation built on Sept. 14, 2020, 2:21 a.m.