es.fsq.partial | R Documentation |
Computes the f-squared (f^2) effect size for a partial F test in a multiple linear regression model using either model R^2 (Rsq) values or a partial correlation. Based on Cohen (1988). (EDIT THIS)
es.fsq.partial(Rsq.red = NULL, Rsq.full = NULL, Rsq.diff = NULL, pc = NULL)
Rsq.red |
The squared population multiple correlation coefficient for the reduced model. Either 2 out of 3 Rsq terms OR pc must be specified. |
Rsq.full |
The squared population multiple correlation coefficient for the full model. Either 2 out of 3 Rsq terms OR pc must be specified. |
Rsq.diff |
The difference between the squared population multiple correlation coefficient for the full model and the reduced model. Either 2 out of 3 Rsq terms OR pc must be specified. |
pc |
The partial correlation coefficient. Either 2 out of 3 Rsq terms OR pc must be specified. |
Cohen J (1988) Statistical Power Analysis for the Behavioral Sciences, 2nd edition. Lawrence Erlbaum Associates, Hillsdale, New Jersey
A list of the arguments and the f^2 effect size.
es.fsq.partial(pc = 0.2)
es.fsq.partial(Rsq.red = 0.25, Rsq.full = 0.35)
es.fsq.partial(Rsq.red = 0.25, Rsq.diff = 0.1)
es.fsq.partial(Rsq.full = 0.35, Rsq.diff = 0.1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.