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 23 24 25 26 27 | mfmc.mleprobplot(
data.ld,
distribution,
xlab = get.time.units(data.ld),
ylab = GetSMRDDefault("SMRD.LabelOnYaxis"),
xlim = c(NA, NA),
ylim = c(NA, NA),
time.range = c(NA, NA),
time.vector.length = 20,
dump = 1,
grids = F,
cex = 1.2,
linear.axes = F,
plot.censored.ticks = F,
ci.list = NULL,
cex.points = 1.2,
shape = NULL,
do.legend = "On plot",
conf.level = GetSMRDDefault("SMRD.ConfLevel")/100,
band.type = "pointwise",
col.ci = 4,
lwd.ci = 2,
show.individual = T,
slope.axis = F,
cexlab = 1.5,
...
)
|
data.ld |
|
distribution |
|
xlab |
|
ylab |
|
xlim |
|
ylim |
|
time.range |
|
time.vector.length |
|
dump |
|
grids |
|
cex |
|
linear.axes |
|
plot.censored.ticks |
|
ci.list |
|
cex.points |
|
shape |
|
do.legend |
|
conf.level |
|
band.type |
|
col.ci |
|
lwd.ci |
|
show.individual |
|
slope.axis |
|
cexlab |
|
... |
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 | ## Not run:
DeviceG.ld <- frame.to.ld(deviceg,
response.column = 1,
failure.mode.column = 2)
# Plots the individual failure modes separately
par(mfrow = c(1,2))
mfmi.mleprobplot(DeviceG.ld, distribution = "weibull")
mfmi.mleprobplot(DeviceG.ld, distribution = "lognormal")
par(mfrow = c(1,1))
# Plots both modes in one plot
mfmc.mleprobplot(DeviceG.ld,
distribution = "Weibull")
mfmc.mleprobplot(DeviceG.ld,
distribution = "Weibull",
band.type = "none")
# different distributions for the different failure modes
mfmc.mleprobplot(DeviceG.ld,
distribution = "Weibull",
distribution.vec = c("Weibull","Lognormal"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.