Description Usage Arguments Value Author(s) See Also Examples
Generate a life.data
object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | frame.to.ld(
frame,
response.column,
censor.column,
case.weight.column,
failure.mode.column,
truncation.type.column,
truncation.response.column,
time.units = names.the.frame[response.column[1]],
x.columns = NULL,
xlabel = NULL,
data.title = deparse(substitute(frame)),
data.note = "",
func.call = match.call(),
residual.rmd = NULL
)
|
frame |
A |
response.column |
The column(s) in For reliability data, responses are often the amount of usage (measured in time, distance, cycles) that are recorded when an event occurred. Events for which responses should be recorded include when one or more units fail or are censored. If the responses are recorded as an interval (i.e. an event occurs between a and b), |
censor.column |
The numeric index or name (as a character string) of the column in In practice, several different labels are used to refer to differnt types of censoring. |
case.weight.column |
The numeric index or name (as a character string) of the column in |
failure.mode.column |
The numeric index or name (as a character string) of the column in |
truncation.type.column |
|
truncation.response.column |
The time at which an obsevation is trucated. |
time.units |
A character string denoting the unit of measure used to quantify system lifetime.
|
x.columns |
|
xlabel |
|
data.note |
|
func.call |
|
residual.rmd |
A life.data
class object
William Q. Meeker, PhD
frame.to.rmd
, frame.to.ddd
, SMRDOptionsDefaults
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
# lzbearing data set
lzbearing.ld <- frame.to.ld(lzbearing,
response.column = 1,
time.units = "Megacycles")
# Example with censoring and truncation
trun.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)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.