The R Project SVN R

Rev

Rev 38832 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 38832 Rev 40306
Line 1... Line 1...
1
### Biochemical Oxygen Demand data from Marske
1
### Biochemical Oxygen Demand data from Marske
2
"BOD" <-
2
BOD <-
3
  structure(list(Time = c(1, 2, 3, 4, 5, 7),
3
  data.frame(Time = c(1, 2, 3, 4, 5, 7),
4
                 demand = c(8.3, 10.3, 19, 16, 15.6, 19.8)),
4
             demand = c(8.3, 10.3, 19, 16, 15.6, 19.8))
5
            row.names = 1:6,
-
 
6
            class = "data.frame",
-
 
7
            reference = "A1.4, p. 270")
5
attr(BOD, "reference") <- "A1.4, p. 270"