Learn R Programming

BSDA (version 1.01)

Vaccine: Reported serious reactions due to vaccines in 11 southern states

Description

Data for Exercise 1.111

Usage

Vaccine

Arguments

Format

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

State

a factor with levels Alabama Arkansas Florida Georgia Louisiana Mississippi North Carolina Oklahoma South Carolina Tennessee Texas

number

a numeric vector

Examples

Run this code
# NOT RUN {
str(Vaccine)
attach(Vaccine)
fn <- fivenum(number)
fn
iqr <- IQR(number)
ll <- fn[2]-1.5*iqr
ul <- fn[4]+1.5*iqr
limits <- c(ll,ul)
limits
boxplot(number)
detach(Vaccine)
# }

Run the code above in your browser using DataLab