In this tutorial, we will learn how to perform multiple t-tests to determine if there is any difference in mean using tidyverse framework. With tidyverse framework, we will use tidyverse packages/functions instead of looping through using a for loop. Let us load the packages needed. We have tow examples of using tidyverse to perform multiple… Continue reading How to perform multiple t-tests using tidyverse
Category: t.test()
T-test on real data using tidyverse
In this post, we will learn how to perform t-test on a real dataset and use tidyverse framework to access results from t-test. Check out the post how to do t-test to learn base R approach to t-tes. We will use Palmer penguin dataset, a real world dataset, to show how to perform t-test. First,… Continue reading T-test on real data using tidyverse
How to perform t-test in R
In this post, we will learn how top perform t test in R and understand when and why to use it. A t-test is one of the commonly used statistical tests, when one is interested in comparing two groups of measures and determine if there is a significant difference between the mean values of two… Continue reading How to perform t-test in R