开始使用免费开始使用

Shapiro-Wilk test

In this exercise, you will check the normality of data.

Normal data is an underlying assumption for many statistical tests. You need to know how to assess the normality of the data before you run these statistical tests during the interview.

The Shapiro-Wilk test is a popular test for testing normality.

Recall that the log transformation can be used to transform skewed data to approximately conform to normality.

The cats dataset from the MASS package has been preloaded for this exercise. As you may remember, the Hwt variable from this dataset contains data on heart weight in grams.

本练习是课程的一部分

Practicing Statistics Interview Questions in R

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Plot the distribution of Hwt
___(___)

# Assess the normality of Hwt numerically
___(___)
编辑并运行代码