Skip to content
What's New in R is a weekly email to help you up your R game. Sign up →
R for the Rest of Us Logo

Inferential Statistics with R

Violated Assumptions

Transcript

Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.

Your Turn

Try the various transformations on the age variable. Do any of them improve the normality of the variable? Test using the shapiro_test() function as you learned in the “Testing assumptions” lesson.

Learn More

Read more about the Winsorize() function in the DescTools package.

Read more about applying transformations in R.

Read more about performing the non-parametric equivalent statistics in the rstatix package:

  • wilcox_test() as the non-parametric equivalent of the independent samples t-test (note: this is synonymous of the Mann-Whitney U test)

  • sign_test() as the non-parametric equivalent of the dependent samples t-test

  • kruskall_test() as the non-parametric equivalent of the one-way ANOVA

  • friedman_test() as the non-parametric equivalent of the one-way repeated measures ANOVA

Have any questions? Put them below and we will help you out!

You need to be signed-in to comment on this post. Login.