Python Functions
Consider the following import statement in Python, where statsmodels module is called in order to use the proportions_ztest method. What are the inputs to proportions_ztest method? Select one.
from statsmodels.stats.proportion import proportions_ztest
zscore for the level of significance (zscore), count of observations that meet a condition (counts), total number of observations (nobs)
count of observations that meet a condition (counts), total number of observations (nobs), Hypothesized value of population proportion (value).
None of the above
level of significance (alpha), zscore for the level of significance (zscore), total number of observations (nobs)
Question 3 (3 points)