Learn R Programming

UsingR (version 2.0-7)

deflection: Deflection under load

Description

The data collected in a calibration experiment consisting of a known load, applied to the load cell, and the corresponding deflection of the cell from its nominal position.

Usage

data(deflection)

Arguments

Format

A data frame with 40 observations on the following 2 variables.

Deflection

a numeric vector

Load

a numeric vector

Examples

Run this code
# NOT RUN {
data(deflection)
res = lm(Deflection ~ Load, data = deflection)
plot(Deflection ~ Load, data = deflection)
abline(res)			# looks good?
plot(res)
# }

Run the code above in your browser using DataLab