Last data update: 2014.03.03

R: Maximum Daily Ozone Concertrations
stamford.dfR Documentation

Maximum Daily Ozone Concertrations

Description

Daily maximum ozone concertrations at Stamford, Connecticut and Yonkers, New York, during the period 1 May 1974 to 30 September 1974.

Usage

data(stamford.df)

Format

A data frame with 136 observations on the following 2 variables:

days

denotes which day observation occured on

ozone

ozone in parts per billion

Source

Chambers, J. M. et al. Graphical Methods for Data Analysis. p346

References

Chambers, J. M. et al. (1983). Graphical Methods for Data Analysis. Duxbury Press: Boston.

Examples

data(stamford.df)
plot(stamford.df$days, stamford.df$ozone, xlab="Days", ylab="Ozone")
loess.stuff=loess(ozone~days, data=stamford.df, span=0.75)
lines(loess.stuff$x, loess.stuff$fitted)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(R330)
Loading required package: s20x
Loading required package: leaps
Loading required package: rgl
Loading required package: lattice
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/R330/stamford.df.Rd_%03d_medium.png", width=480, height=480)
> ### Name: stamford.df
> ### Title: Maximum Daily Ozone Concertrations
> ### Aliases: stamford.df
> ### Keywords: datasets
> 
> ### ** Examples
> 
> data(stamford.df)
> plot(stamford.df$days, stamford.df$ozone, xlab="Days", ylab="Ozone")
> loess.stuff=loess(ozone~days, data=stamford.df, span=0.75)
> lines(loess.stuff$x, loess.stuff$fitted)
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>