Cohen’s d

Cohen’s d

Cohen’s d is the measure of effect size; it indicates the size of a group difference in number of standard deviation.
    • Related Articles

    • Pearson’s r

      Pearson’s r is a special case of slope in which both the outcome and explanatory variables are transformed into z scores prior to analysis; also known as the correlation coefficient.
    • cohensD()

      The cohensD() function calculates the Cohen's d measure of effect size. Example: cohensD(Thumb ~ Gender , data = Fingers) Example output:
    • Type I and Type II Error

      Type I and II Error describe the possible errors we might make when drawing conclusions about the DGP based on our data.  Type I error is when we should adopt the empty model but we adopt the complex model in error.  Type II error is when we should ...
    • Statistical Model

      A statistical model is a simplified way of describing how data are generated. It helps us separate what we can explain using known information from what we cannot explain perfectly. We use statistical models for three main purposes: (1) to understand ...
    • Vectors

      Vectors Vectors are one of the most basic and important data structures in R. A vector is an ordered collection of values of the same data type, such as numbers, characters, or logical (TRUE/FALSE) values. In statistics and data science, vectors are ...