ci.phi: Confidence interval for a phi correlation

View source: R/statpsych3.R

ci.phiR Documentation

Confidence interval for a phi correlation

Description

Computes a confidence interval for a phi correlation. This function requires the frequency counts from a 2 x 2 contingency table for two dichotomous variables. This measure of association is usually most appropriate when both dichotomous variables are naturally dichotomous.

Usage

ci.phi(alpha, f00, f01, f10, f11)

Arguments

alpha

alpha level for 1-alpha confidence

f00

number of participants with y = 0 and x = 0

f01

number of participants with y = 0 and x = 1

f10

number of participants with y = 1 and x = 0

f11

number of participants with y = 1 and x = 1

Value

Returns a 1-row matrix. The columns are:

  • Estimate - estimate of phi correlation

  • SE - standard error

  • LL - lower limit of the confidence interval

  • UL - upper limit of the confidence interval

References

\insertRef

Bishop1975statpsych

Examples

ci.phi(.05, 229, 28, 96, 24)

# Should return:
#       Estimate         SE         LL        UL
# [1,] 0.1229976 0.05746271 0.01037273 0.2356224



statpsych documentation built on July 9, 2023, 6:50 p.m.