chi_local_test_cfa {confreq} | R Documentation |
Local Chi-Square Test
Description
Calculates the local chi-square test based on obseved and expected frequencies.
Usage
chi_local_test_cfa(observed, expected)
Arguments
observed |
a vector giving the observed frequencies. |
expected |
a vector giving the expected frequencies. |
Details
No details in the moment.
Value
a list with chi-square statistic and corresponding degrees of freedom an p-value.
References
No references in the moment
Examples
#######################################
# first calculate expected counts for LienertLSD data example.
designmatrix<-design_cfg_cfa(kat=c(2,2,2)) # generate an designmatrix (only main effects)
data(LienertLSD) # load example data
observed<-LienertLSD[,4] # extract observed counts
expected<-expected_cfa(des=designmatrix, observed=observed) # calculation of expected counts
chi_local_test_cfa(observed,expected)
#######################################
[Package confreq version 1.6.1-1 Index]