compare.mleprobplot: Title

Description Usage Arguments Examples

Description

Title

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
compare.mleprobplot(
  data.ld,
  main.distribution,
  compare.distribution,
  gamthr = 0,
  xlim = c(NA, NA),
  ylim = c(NA, NA),
  time.range = c(NA, NA),
  my.title = NULL,
  sub.title = NULL,
  grids = F,
  linear.axes = F,
  slope.axis = F,
  band.type = "none",
  xlab = get.time.units(data.ld),
  conf.level = GetSMRDDefault("SMRD.ConfLevel")/100,
  cex = 1.2,
  title.option = GetSMRDDefault("SMRD.TitleOption"),
  trunc.correct = T,
  do.legend = T,
  plot.censored.ticks = F
)

Arguments

data.ld
main.distribution
compare.distribution
gamthr
xlim
ylim
time.range
my.title
sub.title
grids
linear.axes
slope.axis
band.type
xlab
conf.level
cex
title.option
trunc.correct
do.legend
plot.censored.ticks

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
39
40
41
42
43
## Not run: 

ShockAbsorber.ld <- frame.to.ld(shockabsorber,
                                response.column = 1, 
                                censor.column = 3,
                                time.units = "Kilometers")

mleprobplot(ShockAbsorber.ld, distribution = "Weibull")
mleprobplot(ShockAbsorber.ld, distribution = "loglogistic")
mleprobplot(ShockAbsorber.ld, distribution = "lognormal")
mleprobplot(ShockAbsorber.ld, distribution = "frechet")


#compare lognormal and Weibull distributions

compare.mleprobplot(ShockAbsorber.ld, 
                    main.distribution = "Lognormal",
                    compare.distribution ="Weibull")
                    
compare.mleprobplot(ShockAbsorber.ld, main.distribution= "Lognormal",compare.distribution=c("Weibull","Loglogistic"))

compare.mleprobplot(ShockAbsorber.ld, 
                    main.distribution = "Lognormal",
                    xlim = c(100,100000),
                    ylim = c(.005,.9),
                    compare.distribution = c("Weibull","Loglogistic"))

compare.mleprobplot(ShockAbsorber.ld, 
                    main.distribution = "Lognormal",
                    xlim = c(100,50001),
                    ylim = c(.005,.9),
                    compare.distribution = c("Weibull","Loglogistic","Exponential"),
                    band.type = "chull")

compare.mleprobplot(ShockAbsorber.ld, 
                    main.distribution = "Lognormal",
                    xlim = c(100,100000),
                    ylim = c(.005,.9),
                    compare.distribution = c("Weibull","Exponential"),
                    band.type = "chull")


## End(Not run)

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