R/pes.R

Defines functions pes

Documented in pes

#' Calculate partial eta squared of a given F statistic

#' @author Markus Huff
#' @param DFeffect Degrees of freedom of the effect
#' @param DFerror Degrees of freedom of the error
#' @param Feffect F value of the effect
#' @export

pes <- function(DFeffect,DFerror,Feffect)
{
  (DFeffect*Feffect) / ((DFeffect*Feffect)+DFerror)
}
markushuff/PsychHelperFunctions documentation built on Sept. 11, 2022, 3:43 a.m.