Description Usage Arguments Value Note Author(s) References See Also Examples
Checks normaility of a set of data which may or may not be broken out by treatments.
1 | CheckNormality(observation, treatment)
|
observation |
vector of numeric values |
treatment |
optional value providing factors by which to separate observation values |
plots |
IF true prints associated plots, assumed FALSE |
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 |
Designed for MAT 342 Spring 2019
Frederick T. Kaesmann Jr
My github -> https://github.com/ftkjr/SummaryPack
SummaryStats.Rd, DistMod.Rd
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.