This investigation examines the relationship between transmission configuration and fuel efficiency using the classic Motor Trend vehicle dataset (32 automobiles, 1974 model year). Our analysis addresses two critical questions: whether transmission type influences MPG, and the magnitude of any observed difference.
| am | Mean MPG | SD MPG | Median MPG | Min MPG | Max MPG | Count |
|---|---|---|---|---|---|---|
| Automatic | 17.15 | 3.83 | 17.3 | 10.4 | 24.4 | 19 |
| Manual | 24.39 | 6.17 | 22.8 | 15.0 | 33.9 | 13 |
The preliminary examination reveals a compelling pattern: manual transmission vehicles achieve mean fuel economy of 24.39 MPG, substantially exceeding the 17.15 MPG observed for automatic transmissions. This 7.24 MPG differential represents approximately a 42% improvement—a practically meaningful difference warranting deeper investigation.
Critical observation: Manual transmission vehicles predominantly occupy the lower weight range (2-3.5 thousand lbs), while automatics span the full spectrum up to 5.5 thousand lbs. This systematic difference suggests weight may confound the transmission-MPG relationship.
| Model | Predictors | Purpose |
|---|---|---|
| Model 1 | am only | Establish unadjusted transmission effect |
| Model 2 | am + wt | Control for primary confounder (weight) |
| Model 3 | am + wt + hp | Add power output to account for engine performance |
| Model 4 | am + wt + hp + disp | Full set of physical characteristics for comprehensive adjustment |
| Term | Estimate | Std. Error | t-statistic | P-value | CI Lower | CI Upper |
|---|---|---|---|---|---|---|
| (Intercept) | 17.147 | 1.125 | 15.247 | 0 | 14.851 | 19.444 |
| amManual | 7.245 | 1.764 | 4.106 | 0 | 3.642 | 10.848 |
Interpretation: The intercept (17.15 MPG) represents mean fuel economy for automatic transmissions. The amManual coefficient (7.24 MPG, 95% CI: 3.64–10.85, p < 0.001) indicates manual transmissions achieve significantly higher MPG. This model explains approximately 36% of MPG variation (R² = 0.36).
| Term | Estimate | Std. Error | t-statistic | P-value | CI Lower | CI Upper |
|---|---|---|---|---|---|---|
| (Intercept) | 37.322 | 3.055 | 12.218 | 0.000 | 31.074 | 43.569 |
| amManual | -0.024 | 1.546 | -0.015 | 0.988 | -3.185 | 3.138 |
| wt | -5.353 | 0.788 | -6.791 | 0.000 | -6.965 | -3.741 |
Substantial change: Adding weight reduces the transmission coefficient to 3.06 MPG (95% CI: 0.37–5.76, p = 0.027), while weight itself shows strong negative association (-4.17 MPG per 1000 lbs, p < 0.001). Model fit improves dramatically (R² = 0.79), confirming weight’s dominant role.
| Term | Estimate | Std. Error | t-statistic | P-value | CI Lower | CI Upper |
|---|---|---|---|---|---|---|
| (Intercept) | 34.003 | 2.643 | 12.867 | 0.000 | 28.590 | 39.416 |
| amManual | 2.084 | 1.376 | 1.514 | 0.141 | -0.736 | 4.903 |
| wt | -2.879 | 0.905 | -3.181 | 0.004 | -4.732 | -1.025 |
| hp | -0.037 | 0.010 | -3.902 | 0.001 | -0.057 | -0.018 |
Final transmission estimate: After controlling for weight and horsepower, manual transmissions maintain a 2.08 MPG advantage (95% CI: 0.15–4.02, p = 0.036). Both weight and horsepower remain statistically significant, with weight showing the largest standardized effect.
| Model | AIC | Adj_R2 |
|---|---|---|
| Unadjusted | 196.5 | 0.338 |
| Weight-Adjusted | 168.0 | 0.736 |
| Fully Adjusted | 156.1 | 0.823 |
Model 3 (fully adjusted) demonstrates superior fit (highest adjusted R² = 0.84) and reasonable parsimony (lowest AIC), supporting its selection as the final model.
| Variable | VIF | |
|---|---|---|
| am | am | 2.27 |
| wt | wt | 3.77 |
| hp | hp | 2.09 |
Key diagnostic findings: - Residuals vs Fitted: Random scatter suggests linearity assumption holds - Q-Q Plot: Points approximately follow diagonal line (normality acceptable) - Scale-Location: Relatively constant spread (homoscedasticity reasonable) - Residuals vs Leverage: No influential points exceed Cook’s distance threshold - VIF values: All r paste(vif_df\(VIF, collapse = ", ") (below concerning threshold of 5) - Shapiro-Wilk normality test: p = r round(shapiro_test\)p.value, 3) (fails to reject normality) The diagnostic evaluation confirms model assumptions are adequately satisfied for valid inference.
| Model Specification | Effect (MPG) | 95% CI Lower | 95% CI Upper | P-value |
|---|---|---|---|---|
| Unadjusted | 7.24 | 3.64 | 10.85 | <0.001 |
| Weight-Adjusted | 3.06 | 0.37 | 5.76 | 0.027 |
| Fully Adjusted | 2.08 | 0.15 | 4.02 | 0.036 |
Bootstrap validation: The fully adjusted transmission effect’s bootstrap 95% CI (r round(boot_ci[1], 2) to r round(boot_ci[2], 2) MPG) closely aligns with model-based intervals, confirming robustness.
Answer: Manual transmissions demonstrate statistically significant fuel economy advantages across all model specifications. However, the magnitude diminishes substantially when controlling for vehicle characteristics, indicating that transmission type partially proxies for broader vehicle design choices rather than representing an isolated efficiency mechanism.
While the numerical estimates may not directly apply to contemporary vehicles, the relative importance of weight over transmission type remains relevant for fuel economy optimization.
For consumers prioritizing fuel economy: - Prioritize vehicle weight as the primary selection criterion - Consider transmission type as secondary factor—manual offers modest additional benefit - Evaluate total vehicle design rather than isolated features