Learn R Programming

psyntur (version 0.1.1)

shapiro_test: Shapiro-Wilk normality test

Description

This function is a wrapper around stats::shapiro.test(). It implements the Shapiro-Wilk test that tests the null hypothesis that a sample of values is a sample from a normal distribution. Thie function can be applied to single vectors or groups of vectors.

Usage

shapiro_test(y, by = NULL, data)

Value

A tibble data frame with one row for each value of the by variable, or one row overall if there is no by variable. For the y variable whose normality is being tested, for each subset of values corresponding to the values of they by variable, or for all values if there is no by

variable, return the Shapiro-Wilk statistic, and the corresponding p-value.

Arguments

y

A numeric variable whose normality is being tested.

by

An optional grouping variable

data

A data frame containing y and the by variable

Examples

Run this code
shapiro_test(faithful, data = faithfulfaces)
shapiro_test(faithful, by = face_sex, data = faithfulfaces)

Run the code above in your browser using DataLab