HiKvadratTest Naredba

Izvor: GeoGebra Manual
Idi na: navigaciju, pretragu

Trenutno nema teksta na ovoj stranici. Možete tražiti ovaj naslov stranice na drugim stranicama ili pretražiti povezane zapisnike, ali nemate dozvolu da napravite ovu stranicu.

Comments

Accessories dictionary.png
Ova stranica je dio službenog priručnika za štampanje i PDF format. Zbog strukturnih razloga korisnici ne mogu uređivati ovu stranicu. Ako ste pronašli bilo kakve grešku na ovoj stranici molimo Vas da nas kontaktirate. Idite na verziju koju mogu uređivati ​​korisnici.
ChiSquaredTest[ <Matrix> ]
Performs a chi-squared test that compares the given matrix of observed counts against the matrix of expected counts determined by the hypothesis of independence.
The matrix of expected counts is calculated internally. Each expected count is found from the row and column totals of the given matrix of observed counts using the rule:
\text{expected count} = \frac{\text{row total} × \text{column total}}{\text{total observed counts}}
Results are returned in list form as {Probabilty value, chi-squared test statistic}.
Primjer:
ChiSquaredTest[{{1, 2, 1}, {3, 2, 3}}] yields {0.69, 0.75}.
ChiSquaredTest[ <List>, <List> ]
Performs a Goodness of Fit test that compares the given list of observed counts against the given list of expected counts.
Results are returned in list form as {Probabilty value, chi-squared test statistic}.
Primjer:
ChiSquaredTest[{1, 2, 3, 4}, {3, 2, 4, 2}] yields {0.31, 3.58}.
ChiSquaredTest[ <Matrix>, <Matrix> ]
Performs a chi-squared test that compares the given matrix of observed counts against the given matrix of expected counts.
Results are returned in list form as {Probabilty value, chi-squared test statistic}.
Primjer:
ChiSquaredTest[{{1, 2, 1}, {3, 2, 3}}, {{2, 3, 2}, {4, 2, 3}}] yields {0.45, 1.58}.
© 2024 International GeoGebra Institute