-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion: support for t-tests #52
Comments
In the meantime, you can pipe that |
Do you have a reproducible example that resembles the Stata output? |
Hi,
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
as sd-tests and t-tests in R do not provide a lot of information, adding a table function in sjPlot would be very useful.
This is the output of a paired t-test in Stata (see #189):
![image](https://cloud.githubusercontent.com/assets/7460499/23462626/de23e1a6-fe8e-11e6-99a9-6d89db65ba49.png)
![image](https://cloud.githubusercontent.com/assets/7460499/23462698/1e187c7c-fe8f-11e6-9000-f481d105c0ab.png)
It includes everything that is of interest (group specific and difference wise), means, standard deviations, confidence intervals, nr. of observations, df's, p values.
In comparison this is the t-test in R:
For independent two sample t-tests, there could either be a separate function to check for equal variances (
var.test
in base R), or the t-test function could have a parameter, e.g.var.equal
, with optionsauto
,TRUE
, orFALSE
. In the case ofauto
, the function could automatically check for variance equality and adjust the degrees of freedom computation if necessary.The text was updated successfully, but these errors were encountered: