Learn R Programming

PASWR (version 1.1)

GD: Times Until Failure

Description

Contains time until failure in hours for a particular electronic component subjected to an accelerated stress test.

Usage

GD

Arguments

Format

A data frame with 100 observations on the following variable:

attf

times until failure in hours

Examples

Run this code
# NOT RUN {
with(data = GD, 
hist(attf,prob=TRUE))
with(data = GD, 
lines(density(attf)))
# Trellis Approach
histogram(~attf, data = GD, type="density",
panel = function(x, ...) {
panel.histogram(x, ...)
panel.densityplot(x, col = "blue", plot.points=TRUE, lwd=2)
} )
# }

Run the code above in your browser using DataLab