.. _chapter3: Chapter 3: Frequentist Statistical Inference ============================================== .. contents:: Chapter Contents :local: :depth: 2 This chapter covers frequentist statistical inference, building on the probability foundations from Chapter 1 and the simulation methods from Chapter 2. We explore how to estimate parameters from data, quantify sampling variability, and make inferences about populations based on samples. The frequentist approach treats parameters as fixed but unknown quantities, with randomness arising from the sampling process. We begin with sampling variability and the behavior of estimators across repeated samples, then develop systematic approaches for parameter estimation including plug-in methods and maximum likelihood. We explore exponential families—a powerful class of distributions with elegant mathematical properties—and their role in statistical modeling. The chapter culminates with linear models and their generalization to non-normal responses through generalized linear models (GLMs). **Learning Objectives:** Upon completion of this chapter, students will be able to: * Understand sampling variability and the distribution of estimators across repeated samples * Analyze properties of estimators including bias, variance, consistency, and efficiency * Apply plug-in (method of moments) estimators and understand when they are appropriate * Implement maximum likelihood estimation for parametric models * Recognize exponential family distributions and exploit their properties * Derive maximum likelihood estimators analytically and numerically * Construct and interpret linear regression models with least squares estimation * Understand assumptions underlying linear models and diagnostic techniques * Extend linear models to non-normal responses using generalized linear models * Implement and interpret GLMs for binary, count, and other response types .. toctree:: :maxdepth: 2 :caption: Sections sampling_variability statistical_estimators plugin_methods parametric_inference exponential_families maximum_likelihood linear_models generalized_linear_models