Kindly advise on how to access the latest version of rstudio that has the t.test package
t_test is a function in rstatix package
t.test is a function in stats package
As JonesYaniv says t.test is a function in stats package.
This means that t.test()
is in your basic R installation. You do not need to install a separate package.
If you want t_test then you need to do
install.packages("rstatix")
library(rstatix)
the first time you want to use it.
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.