Description Usage Arguments Examples
Title
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
)
|
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 |
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.