CheckNormality: Check Normality of set(s) of observations

Description Usage Arguments Value Note Author(s) References See Also Examples

Description

Checks normaility of a set of data which may or may not be broken out by treatments.

Usage

1
CheckNormality(observation, treatment)

Arguments

observation

vector of numeric values

treatment

optional value providing factors by which to separate observation values

plots

IF true prints associated plots, assumed FALSE

Value

Prints a series of summary statistics to quickly check how normal the data is for either a single set of observations or for observations broken down by factors.

IQR

Inter Quartile Range

Stand Dev

Standard Deviation

IQR/Sigma

Provides numeric value to check normality

Histogram
Boxplot

Note

Designed for MAT 342 Spring 2019

Author(s)

Frederick T. Kaesmann Jr

References

My github -> https://github.com/ftkjr/SummaryPack

See Also

SummaryStats.Rd, DistMod.Rd

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Single or no factor
data("CO2")

CheckNormality(CO2$uptake)

#####

## Multiple treatment factors
data("CO2")

CheckNormality(CO2$uptake,CO2$Plant)

ftkjr/SummaryPack documentation built on June 4, 2019, 8:23 a.m.