The R Project SVN R

Rev

Rev 24300 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24300 Rev 25118
1
\name{stackloss}
1
\name{stackloss}
2
\docType{data}
2
\docType{data}
3
\alias{stackloss}
3
\alias{stackloss}
4
\alias{stack.loss}
4
\alias{stack.loss}
5
\alias{stack.x}
5
\alias{stack.x}
6
\title{Brownlee's Stack Loss Plant Data}
6
\title{Brownlee's Stack Loss Plant Data}
7
\description{
7
\description{
8
  Operational data of a plant for the oxidation of ammonia to nitric
8
  Operational data of a plant for the oxidation of ammonia to nitric
9
  acid.
9
  acid.
10
}
10
}
11
\usage{data(stackloss)}
11
\usage{data(stackloss)}
12
\format{
12
\format{
13
  \code{stackloss} is a data frame with 21 observations on 4 variables.
13
  \code{stackloss} is a data frame with 21 observations on 4 variables.
14
 
14
 
15
  \tabular{rll}{
15
  \tabular{rll}{
16
    [,1] \tab \code{Air Flow}   \tab Flow of cooling air\cr
16
    [,1] \tab \code{Air Flow}   \tab Flow of cooling air\cr
17
    [,2] \tab \code{Water Temp} \tab Cooling Water Inlet
17
    [,2] \tab \code{Water Temp} \tab Cooling Water Inlet
18
    Temperature\cr
18
    Temperature\cr
19
    [,3] \tab  \code{Acid Conc.} \tab Concentration of acid [per
19
    [,3] \tab  \code{Acid Conc.} \tab Concentration of acid [per
20
    1000, minus 500]\cr
20
    1000, minus 500]\cr
21
    [,4] \tab  \code{stack.loss} \tab Stack loss\cr
21
    [,4] \tab  \code{stack.loss} \tab Stack loss\cr
22
  }
22
  }
23
 
23
 
24
  For compatibility with S-PLUS, the data sets \code{stack.x}, a matrix
24
  For compatibility with S-PLUS, the data sets \code{stack.x}, a matrix
25
  with the first three (independent) variables of the data frame, and
25
  with the first three (independent) variables of the data frame, and
26
  \code{stack.loss}, the numeric vector giving the fourth (dependent)
26
  \code{stack.loss}, the numeric vector giving the fourth (dependent)
27
  variable, are provided as well.
27
  variable, are provided as well.
28
}
28
}
29
\source{
29
\source{
30
  Brownlee, K. A. (1960, 2nd ed. 1965)
30
  Brownlee, K. A. (1960, 2nd ed. 1965)
31
  \emph{Statistical Theory and Methodology in Science and Engineering}.
31
  \emph{Statistical Theory and Methodology in Science and Engineering}.
32
  New York: Wiley. pp. 491--500.
32
  New York: Wiley. pp. 491--500.
33
}
33
}
34
\details{
34
\details{
35
  ``Obtained from 21 days of operation of a plant for the oxidation
35
  \dQuote{Obtained from 21 days of operation of a plant for the
36
  of ammonia (NH\eqn{_3}{3}) to nitric acid (HNO\eqn{_3}{3}).
36
    oxidation of ammonia (NH\eqn{_3}{3}) to nitric acid
37
  The nitric oxides produced are absorbed in a countercurrent absorption
37
    (HNO\eqn{_3}{3}).  The nitric oxides produced are absorbed in a
-
 
38
    countercurrent absorption tower}.
38
  tower.''  (Brownlee, cited by Dodge, slightly reformatted by MM.)
39
  (Brownlee, cited by Dodge, slightly reformatted by MM.)
39
 
40
 
40
  \code{Air Flow} represents the rate of operation of the plant.
41
  \code{Air Flow} represents the rate of operation of the plant.
41
  \code{Water Temp} is the temperature of cooling water circulated
42
  \code{Water Temp} is the temperature of cooling water circulated
42
  through coils in the absorption tower.
43
  through coils in the absorption tower.
43
  \code{Acid Conc.} is the concentration of the acid circulating, minus
44
  \code{Acid Conc.} is the concentration of the acid circulating, minus
44
  50, times 10: that is, 89 corresponds to 58.9 per cent acid.
45
  50, times 10: that is, 89 corresponds to 58.9 per cent acid.
45
  \code{stack.loss} (the dependent variable) is 10 times the percentage
46
  \code{stack.loss} (the dependent variable) is 10 times the percentage
46
  of the ingoing ammonia to the plant that escapes from the absorption
47
  of the ingoing ammonia to the plant that escapes from the absorption
47
  column unabsorbed; that is, an (inverse) measure of the over-all
48
  column unabsorbed; that is, an (inverse) measure of the over-all
48
  efficiency of the plant.
49
  efficiency of the plant.
49
}
50
}
50
\references{
51
\references{
51
  Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)
52
  Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)
52
  \emph{The New S Language}.
53
  \emph{The New S Language}.
53
  Wadsworth \& Brooks/Cole.
54
  Wadsworth \& Brooks/Cole.
54
 
55
 
55
  Dodge, Y. (1996)
56
  Dodge, Y. (1996)
56
  The guinea pig of multiple regression. In:
57
  The guinea pig of multiple regression. In:
57
  \emph{Robust Statistics, Data Analysis, and Computer Intensive
58
  \emph{Robust Statistics, Data Analysis, and Computer Intensive
58
    Methods; In Honor of Peter Huber's 60th Birthday}, 1996,
59
    Methods; In Honor of Peter Huber's 60th Birthday}, 1996,
59
  \emph{Lecture Notes in Statistics} \bold{109}, Springer-Verlag, New York.
60
  \emph{Lecture Notes in Statistics} \bold{109}, Springer-Verlag, New York.
60
}
61
}
61
\examples{
62
\examples{
62
data(stackloss)
63
data(stackloss)
63
summary(lm.stack <- lm(stack.loss ~ stack.x))
64
summary(lm.stack <- lm(stack.loss ~ stack.x))
64
}
65
}
65
\keyword{datasets}
66
\keyword{datasets}
66
 
67