The R Project SVN R

Rev

Rev 90002 | 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
68948 ripley 2
% Part of the R package, https://www.R-project.org
88548 hornik 3
% Copyright 1995-2025 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}
85977 hornik 11
\title{\I{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}{
90002 hornik 26
    [,1] \tab \samp{Air Flow}   \tab Flow of cooling air\cr
27
    [,2] \tab \samp{Water Temp} \tab Cooling Water Inlet
7125 hornik 28
    Temperature\cr
90002 hornik 29
    [,3] \tab \samp{Acid Conc.} \tab Concentration of acid [per
7125 hornik 30
    1000, minus 500]\cr
90002 hornik 31
    [,4] \tab \code{stack.loss} \tab Stack loss\cr
947 leisch 32
  }
9439 hornik 33
 
85835 ripley 34
  For historical compatibility with S-PLUS, the data sets
35
  \code{stack.x}, a matrix with the first three (independent) variables
36
  of the data frame, and \code{stack.loss}, the numeric vector giving
37
  the fourth (dependent) variable, are also provided.
947 leisch 38
}
7125 hornik 39
\source{
90082 hornik 40
  \bibinfo{R:Brownlee:1965}{note}{Pages\sspace{}491--500}
41
  \bibshow{R:Brownlee:1965}
947 leisch 42
}
7125 hornik 43
\details{
25118 hornik 44
  \dQuote{Obtained from 21 days of operation of a plant for the
85953 hornik 45
    oxidation of ammonia (\I{NH\eqn{_3}{3}}) to nitric acid
46
    (\I{HNO\eqn{_3}{3}}).  The nitric oxides produced are absorbed in a
25118 hornik 47
    countercurrent absorption tower}.
85977 hornik 48
  (\I{Brownlee}, cited by \I{Dodge}, slightly reformatted by MM.)
7125 hornik 49
 
90002 hornik 50
  \samp{Air Flow} represents the rate of operation of the plant.
51
  \samp{Water Temp} is the temperature of cooling water circulated
9439 hornik 52
  through coils in the absorption tower.
90002 hornik 53
  \samp{Acid Conc.} is the concentration of the acid circulating, minus
9439 hornik 54
  50, times 10: that is, 89 corresponds to 58.9 per cent acid.
55
  \code{stack.loss} (the dependent variable) is 10 times the percentage
56
  of the ingoing ammonia to the plant that escapes from the absorption
57
  column unabsorbed; that is, an (inverse) measure of the over-all
58
  efficiency of the plant.
7081 pd 59
}
7125 hornik 60
\references{
88548 hornik 61
  \bibshow{R:Becker+Chambers+Wilks:1988, R:Dodge:1996}
947 leisch 62
}
1384 maechler 63
\examples{
41502 ripley 64
require(stats)
1384 maechler 65
summary(lm.stack <- lm(stack.loss ~ stack.x))
66
}
947 leisch 67
\keyword{datasets}
1421 maechler 68