Description Usage Arguments Author(s) See Also Examples
Plot failures and censored observations as a function of the response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | censored.data.plot(
data.ld,
explan.var = 1,
ylim = c(NA, NA),
xlim = c(NA, NA),
x.axis = "linear",
y.axis = "linear",
my.title = NULL,
ylab = get.time.units(data.ld),
xlab = NULL,
cex = par()$cex,
cex.labs = par()$cex.lab,
cex.points = 1.2,
add = F,
grids = F,
title.option = GetSMRDDefault("SMRD.TitleOption"),
response.on.yaxis = T
)
|
data.ld |
Name (as a character string) of a |
explan.var |
numeric( Explanatory variable to be plotted versus the responses. Value cannot be greater that the number |
ylim |
numeric( (optional) Range of plotting values for the y-axis. If left blank, values will be chosen based on the information in |
xlim |
numeric( (optional) Range of plotting values for the x-axis. If left blank, values will be chosen based on the information in |
x.axis |
character( Transformation applied to the values defined along the x-axis. See |
y.axis |
character( Transformation applied to the values defined along the x-axis. See |
my.title |
character( Title to be displayed above the plot |
ylab |
character( (optional) Title of the y-axis. If left blank, the value of the |
xlab |
character( (optional) Title of the x-axis. If left blank, the column name in |
cex |
numeric( |
cex.labs |
numeric( |
cex.points |
numeric( Scaling value for size of the points to be plotted |
add |
logical( If |
grids |
logical( If |
title.option |
character( (optional) Produces a title above the plot using the SMRD default title format |
response.on.yaxis |
character( If |
William Q. Meeker, PhD
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 | # Create a \code{life.data} object
superalloy.ld <- frame.to.ld(superalloy,
response.column = 1,
censor.column = 2,
x.columns = c(5,6,4),
time.units = "Kilocycles")
summary(superalloy.ld)
censored.data.plot(superalloy.ld,
explan.var = 3)
censored.data.plot(superalloy.ld,
explan.var = 3 ,
response.on.yaxis = F)
censored.data.plot(superalloy.ld,
explan.var = 3,
x.axis = "log",
y.axis = "log")
censored.data.plot(superalloy.ld,
explan.var = 3 ,
response.on.yaxis = F,
x.axis = "log",
y.axis = "log")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.