2026-06-07

What is Point Estimation?

Point estimation is a statistical method used to determine a single, “best guess” value for an unknown population parameter based on sample data.

Examples

  • Sample mean estimates the population mean.
  • Sample proportion estimates the population proportion.

Population vs. Sample

A population is the entire group, whereas a sample is only a subset.

Example

  • Population: All of Arizona.
  • Sample: 100 random Arizona residents.

Sample Mean

The sample mean estimates the population mean.

\[ \bar{x} = \frac{\sum x_i}{n} \]

In this example, the sample mean estimates the average exam score.

Sample Proportion

The sample proportion estimates the population proportion.

\[ \hat{p} = \frac{x}{n} \]

Example: If 60 out of 100 people agree, then the sample proportion is 0.60.

Example Data

We will use 20 exam scores as a sample.

## [1] 85.1

This number is the point estimate for the population mean exam score.

R Code Example

The following R code creates the histogram shown in the next slide.

ggplot(students, aes(scores)) +
  geom_histogram(
    bins = 5,
    fill = "red",
    color = "black"
  ) +
  labs(
    title = "Distribution of Exam Scores",
    x = "Exam Score",
    y = "Frequency"
  )

ggplot Histogram

This histogram shows the distribution of the sample exam scores used for point estimation.

ggplot Boxplot

Plotly 3D Plot and Conclusion

Point estimation gives one best estimate of a population parameter using sample data.