This analysis examines whether US consumer expectations about future US unemployment, as measured by the University of Michigan Survey of Consumer Attitudes (SCA), serve as a leading indicator for actual changes in the unemployment rate. We test the hypothesis that expectations about “more unemployment” reported 6 months earlier are correlated with current unemployment rates, suggesting that consumer sentiment may anticipate labor market conditions.
Key Finding: The analysis reveals a statistically significant correlation of 0.257 between expectations of more unemployment (lagged 6 months) and current unemployment rates, based on 207 monthly observations from July 2008 to September 2025.
Latest Readings (as of October 2025): - Unemployment Rate: NA% - Expectations of More Unemployment: 64%
| Month | Unemployment Rate (%) | Expect More (%) |
|---|---|---|
| October 2024 | 4.1 | 32 |
| November 2024 | 4.2 | 32 |
| December 2024 | 4.1 | 40 |
| January 2025 | 4.0 | 48 |
| February 2025 | 4.1 | 51 |
| March 2025 | 4.2 | 66 |
| April 2025 | 4.2 | 65 |
| May 2025 | 4.2 | 64 |
| June 2025 | 4.1 | 57 |
| July 2025 | 4.2 | 57 |
| August 2025 | 4.3 | 63 |
| September 2025 | 4.4 | 65 |
| October 2025 | NA | 64 |
The core question we address is: Do consumer expectations about unemployment predict future unemployment changes?
To test this, we employ a lagged correlation approach:
The 6-month lag is chosen to align with the survey question’s time horizon (“during the next year”) and to account for the typical lag between economic expectations and realized outcomes. This period allows for: - Information processing and decision-making delays - Hiring/firing cycles in the labor market - The time it takes for economic conditions to materialize
We calculate: - Pearson correlation coefficient between lagged expectations and current unemployment - Statistical significance using a two-tailed correlation test - 95% confidence intervals for the correlation coefficient
| Correlation | P-value | CI Lower | CI Upper | N Observations | Start Date | End Date | Significant? |
|---|---|---|---|---|---|---|---|
| 0.257 | 0.000188 | 0.125 | 0.38 | 207 | 2008-07-01 | 2025-09-01 | Yes |
Interpretation: - A positive correlation of 0.257 indicates that when expectations of more unemployment were higher 6 months ago, current unemployment tends to be higher. - The correlation is statistically significant (p = 0.000188), suggesting a meaningful relationship.
This scatter plot shows the relationship between expectations of more unemployment (6 months earlier) and current unemployment rates. Each point represents one month. The blue line shows the linear trend, with the shaded area representing the 95% confidence interval.
Key Observations: - Weak positive relationship between the two variables - The relationship is statistically significant, suggesting that consumer expectations do contain predictive information about future unemployment
This time series plot shows both variables standardized (expressed as standard deviations from their respective means) to facilitate comparison. The expectations series is lagged by 6 months to align with the unemployment outcomes.
Key Observations: - Both series show similar patterns over time, with peaks and troughs that tend to align - The alignment suggests that consumer expectations may indeed anticipate changes in unemployment - Major economic events (recessions, recoveries) are visible in both series
The statistically significant correlation between lagged expectations and current unemployment suggests that:
Consumer Expectations as Information: Consumer expectations about unemployment contain information about future labor market conditions. This aligns with the idea that consumers, as economic agents, may have access to information or intuition about economic trends.
Leading Indicator Potential: The 6-month lag structure suggests that expectations may serve as a leading indicator—information available today (expectations) helps predict conditions 6 months in the future (unemployment).
Self-Fulfilling Prophecies: There may be a self-reinforcing mechanism where expectations influence behavior (e.g., reduced spending, delayed hiring), which in turn affects actual unemployment outcomes.
Several important limitations should be considered:
Correlation vs. Causation: A correlation does not establish causation. The relationship could be driven by:
Time Horizon: The 6-month lag is somewhat arbitrary. Different lags might yield different results, and the optimal lead time may vary across economic cycles.
Survey Methodology: The Michigan SCA survey reflects consumer sentiment, which may be influenced by media coverage, political factors, and other non-economic variables.
Sample Period: The analysis covers a specific time period. The relationship may vary across different economic regimes (e.g., expansion vs. recession).
If consumer expectations do predict unemployment changes, this has implications for:
This analysis provides evidence that consumer expectations about unemployment, as measured by the University of Michigan SCA survey, are associated with future unemployment rates. The positive correlation of 0.257 suggests that when consumers expect more unemployment, actual unemployment tends to increase in subsequent months.
However, correlation does not imply causation, and further analysis—including causal inference methods, robustness checks with different lags, and examination of the relationship across different economic regimes—would strengthen these findings.
All data processing and analysis were performed using R. The analysis
script (expectation_lead_unempl.R) performs the following
steps:
All intermediate and final outputs are saved to the
outputs/ directory:
merged_unrate_sca_data.csv: Full merged datasetsca_only_data.csv: Filtered dataset with SCA
observations onlysca_ft_time_series.csv: Time series with YoY changes
and lagssca_ft_standardized.csv: Standardized time series for
visualizationcorrelation_dataset.csv: Dataset used for correlation
analysiscorrelation_summary.csv: Summary statisticsscatter_plot_expectations_vs_unemployment.png: Scatter
plot visualizationtime_series_standardized.png: Time series
comparisonTo reproduce this analysis:
Ensure raw data files are in data/raw/:
UNRATE_data.csvsca-table30-on-2025-Nov-24.csvRun the analysis script:
source("scripts/expectation_lead_unempl.R")Compile this report:
rmarkdown::render("report_sources/unemployment_expectations_analysis.Rmd")Sources: University of Michigan Survey of Consumer Attitudes, U.S. Bureau of Labor Statistics (via FRED)
Analysis Date: 2025-11-25