Last data update: 2014.03.03

R: Air pollution index for 15 randomly selected days for a major...
PollutioR Documentation

Air pollution index for 15 randomly selected days for a major western city

Description

Data for Exercise 5.59

Usage

Pollutio

Format

A data frame with 15 observations on the following variable.

inde

a numeric vector

Source

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury

Examples

str(Pollutio)
attach(Pollutio)
EDA(inde)
t.test(inde,conf.level=.98)$conf
detach(Pollutio)

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(BSDA)
Loading required package: e1071
Loading required package: lattice

Attaching package: 'BSDA'

The following object is masked from 'package:datasets':

    Orange

> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/BSDA/Pollutio.Rd_%03d_medium.png", width=480, height=480)
> ### Name: Pollutio
> ### Title: Air pollution index for 15 randomly selected days for a major
> ###   western city
> ### Aliases: Pollutio
> ### Keywords: datasets
> 
> ### ** Examples
> 
> str(Pollutio)
'data.frame':	15 obs. of  1 variable:
 $ inde: num  57.6 61.2 59.4 65.6 58.3 44.7 63.2 48.8 55.7 59 ...
> attach(Pollutio)
> EDA(inde)
[1] "inde"
Size (n)  Missing  Minimum   1st Qu     Mean   Median   TrMean   3rd Qu 
  15.000    0.000   43.200   48.800   57.167   59.000   57.167   63.200 
    Max.   Stdev.     Var.  SE Mean   I.Q.R.    Range Kurtosis Skewness 
  71.200    8.213   67.448    2.121   14.400   28.000   -1.049   -0.331 
SW p-val 
   0.298 
> t.test(inde,conf.level=.98)$conf
[1] 51.60141 62.73192
attr(,"conf.level")
[1] 0.98
> detach(Pollutio)
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>