Last data update: 2014.03.03

R: Wind leakage for storm windows exposed to a 50 mph wind
WindowR Documentation

Wind leakage for storm windows exposed to a 50 mph wind

Description

Data for Exercise 6.54

Usage

Window

Format

A data frame with 9 observations on the following 2 variables.

Window

a numeric vector

Leakage

a numeric vector

Source

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

Examples

str(Window)
attach(Window)
SIGN.test(Leakage,md=.125,alternative="greater")
detach(Window)

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/Window.Rd_%03d_medium.png", width=480, height=480)
> ### Name: Window
> ### Title: Wind leakage for storm windows exposed to a 50 mph wind
> ### Aliases: Window
> ### Keywords: datasets
> 
> ### ** Examples
> 
> str(Window)
'data.frame':	9 obs. of  2 variables:
 $ Window : int  1 2 3 4 5 6 7 8 9
 $ Leakage: num  0.13 0.17 0.13 0.18 0.14 0.12 0.11 0.14 0.2
> attach(Window)
The following object is masked from package:BSDA:

    Window

> SIGN.test(Leakage,md=.125,alternative="greater")

	One-sample Sign-Test

data:  Leakage
s = 7, p-value = 0.08984
alternative hypothesis: true median is greater than 0.125
95 percent confidence interval:
 0.1243333       Inf
sample estimates:
median of x 
       0.14 

                  Conf.Level L.E.pt U.E.pt
Lower Achieved CI     0.9102 0.1300    Inf
Interpolated CI       0.9500 0.1243    Inf
Upper Achieved CI     0.9805 0.1200    Inf
> detach(Window)
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>