PredictEasy!
  • ๐Ÿš€PredictEasy
  • Getting Started
  • โ˜๏ธInstallation
  • ๐Ÿ› ๏ธData Preprocessing
    • Label Encoding
    • Log Transform
    • Standard Scaling
    • Replacement
    • Imputation
  • ๐Ÿ“ŠStatistical Test
    • T-Test
    • ANOVA Test
    • Spearmanโ€™s Rank Correlation
    • Pearsonโ€™s Correlation
    • Chi-Squared Test
    • Shapiro-Wilk Test
    • Kruskal-Wallis H Test
    • Friedman Test
  • ๐Ÿ“ถData Modelling
    • Classification
    • Regression
    • Clustering
  • ๐Ÿ”กNLP
    • Sentiment Analysis
  • ๐Ÿ“ˆVisualization Charts
    • Line graph
    • Bar Chart
    • Scatter Chart
    • Area Chart
  • Media
  • ๐Ÿ“ฝ๏ธVideo Tutorials
  • ๐Ÿ—ž๏ธArticles
  • FAQ?
  • ๐Ÿ“žContact
Powered by GitBook
On this page

Was this helpful?

  1. Statistical Test

Shapiro-Wilk Test

PreviousChi-Squared TestNextKruskal-Wallis H Test

Last updated 1 year ago

Was this helpful?

Use: The Shapiro-Wilk test is a statistical test used to assess whether a given sample of data follows a normal distribution. It is particularly effective for relatively small sample sizes.

Example: Checking if the scores of a standardized test in a population follow a normal distribution.

Column Requirement: Continuous data.

Steps:

  1. Select a column with continuous data.

  2. Perform the Shapiro-Wilk test to check for normality.

  3. Evaluate the test statistic and associated p-value.

  4. A low p-value (<0.05) indicates deviation from normality.

  5. Normality assumption is violated if the p-value is less than the chosen significance level.

๐Ÿ“Š