March 21, 2020

STATISTICS

  1. A Binomial Test compares a categorical dataset to some expectations.

    1. The Null Hypothesis, in this case, would be that there is no difference between the observed behavior and the expected behavior.

      1. If we get a p-value of less than 0.05, we can reject that hypothesis and determine that there is a difference.

  2. SciPy has function called binom_test

    1. Three inputs

      1. Number of observed successes

      2. Number of total trials

      3. Expected probability of success

  3. Chi Square Test is used when we have two or more categorical datasets we would like to compare.

    1. In SciPy, we can use the function chi2_contingency to perform a Chi Square Test

  4. 1 Sample T-test compares a sample mean to a hypothetical population mean.

  5. Binomial Test compares a categorical dataset to an expectation.

  6. Tukey Range Test checks if a relationship between two datasets is significant.

  7. ANOVA - ANalysis of Variance tests the Null Hypothesis that all of the datasets have the same mean.

Previous
Previous

March 25, 2020

Next
Next

March 17, 2020