View source: R/chi_local_test_cfa.R
chi_local_test_cfa | R Documentation |
Calculates the local chi-square test based on obseved and expected frequencies.
chi_local_test_cfa(observed, expected)
observed |
a vector giving the observed frequencies. |
expected |
a vector giving the expected frequencies. |
No details in the moment.
a list with chi-square statistic and corresponding degrees of freedom an p-value.
No references in the moment
####################################### # 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) #######################################
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.