The R Project SVN R

Rev

Rev 56186 | Rev 65999 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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