返回卡包市场

how to

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 6内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (6 张)

#1
正面 (问题)

take a random sample

背面 (解答)

1- Create a list of every unit in the population of interest, and give each unit a number between one and the total population size 2- Decide on the number of units to be sampled (call this number n) 3- Using a random-number generator, generate n random integers between one and the total number of units in the population 4- sample the units whose numbers match those produced by the random-number generator

#2
正面 (问题)

calculate goodness of fit (x^2)

背面 (解答)

x^2= sum of all classes [(observed-expected)^2/expected]

#3
正面 (问题)

How to calculate degrees of freedom for goodness of fit test

背面 (解答)

df= (number of categories) - (number of parameters estimated from the data) -1

#4
正面 (问题)

How do you find the P-value for goodness of fit?

背面 (解答)

• find the 5% critical value • look at df for alpha of 0.05 on x^2 distribution table • table will tell you critical value for x^2 for that many degrees of freedom

#5
正面 (问题)

Poisson distribution

背面 (解答)

Pr[x]= e^-u u^X/ X! X= the number of events u= the mean number of events per unit

#6
正面 (问题)

degrees of freedom in a contingency analysis

背面 (解答)

df= (#column-1)(#rows-1)