0% found this document useful (0 votes)
9 views1 page

Wage and IQ Regression Analysis

The document presents a regression analysis of wages based on IQ scores using a dataset of 901 observations. The results indicate a significant positive relationship between IQ and wage, with a coefficient of approximately 1.65 for IQ in the linear regression and 0.00136 in the log-wage regression. The R-squared values suggest that IQ explains about 9.41% and 9.67% of the variance in wage and log-wage, respectively.

Uploaded by

laibaadeelnasir
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Wage and IQ Regression Analysis

The document presents a regression analysis of wages based on IQ scores using a dataset of 901 observations. The results indicate a significant positive relationship between IQ and wage, with a coefficient of approximately 1.65 for IQ in the linear regression and 0.00136 in the log-wage regression. The R-squared values suggest that IQ explains about 9.41% and 9.67% of the variance in wage and log-wage, respectively.

Uploaded by

laibaadeelnasir
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

8.

. use "H:\sem 8\economertics\data sets\wages_01.dta", clear

. summarize

Variable | Obs Mean Std. Dev. Min Max


-------------+--------------------------------------------------------
iq | 901 101.0866 15.06789 50 145
wage | 901 1191.266 81.10248 1023 1615.6

. regress wage iq

Source | SS df MS Number of obs = 901


-------------+------------------------------ F( 1, 899) = 93.38
Model | 557036.385 1 557036.385 Prob > F = 0.0000
Residual | 5362814.78 899 5965.31121 R-squared = 0.0941
-------------+------------------------------ Adj R-squared = 0.0931
Total | 5919851.16 900 6577.6124 Root MSE = 77.235

------------------------------------------------------------------------------
wage | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
iq | 1.65108 .1708609 9.66 0.000 1.315747 1.986412
_cons | 1024.364 17.46236 58.66 0.000 990.0924 1058.636
------------------------------------------------------------------------------

. display iq*10
740

. gen log_wage=log(wage)

. regress log_wage iq

Source | SS df MS Number of obs = 901


-------------+------------------------------ F( 1, 899) = 96.28
Model | .377873865 1 .377873865 Prob > F = 0.0000
Residual | 3.52826356 899 .003924654 R-squared = 0.0967
-------------+------------------------------ Adj R-squared = 0.0957
Total | 3.90613743 900 .004340153 Root MSE = .06265

------------------------------------------------------------------------------
log_wage | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
iq | .0013599 .0001386 9.81 0.000 .0010879 .0016319
_cons | 6.943094 .014164 490.19 0.000 6.915295 6.970892
------------------------------------------------------------------------------

. display iq*10
740

Common questions

Powered by AI

The F-statistic is 93.38 for the linear model and 96.28 for the log-linear model, with both having a p-value less than 0.0001 . This indicates that the overall regression model is statistically significant and that the explanatory variables collectively have a significant effect on the dependent variable (wages), strengthening the case for including IQ in the wage model .

The p-value for the coefficient of IQ is 0.000, which is highly significant . This means that there is strong evidence against the null hypothesis that the coefficient is zero (i.e., there is no relationship between IQ and wages). Therefore, we can be confident that the relationship observed between IQ and wages is not due to random chance .

The regression analysis indicates that IQ has a positive effect on wages, with a coefficient of 1.65108. This means that each additional point in IQ is associated with an increase of approximately $1.65 in wages . The R-squared value of 0.0941 suggests that approximately 9.41% of the variation in wages can be explained by IQ alone. This relatively low R-squared indicates that while there is a statistically significant relationship between IQ and wages, most of the wage variation is due to other factors not captured in the model .

The minimum IQ score is 50, and the maximum is 145, reflecting a wide range of cognitive abilities within the dataset . The range of wages, from approximately $1023 to $1615.6, represents considerable economic diversity, suggesting varying levels of job roles and industries among the individuals . The substantial variation in both IQ scores and wages implies a heterogeneous population where different levels of cognitive abilities potentially lead to different economic outcomes, which is valuable for understanding socioeconomic dynamics.

The adjusted R-squared value is 0.0931 for the linear model and 0.0957 for the log-linear model . These values indicate that the explanatory power of the model is slightly improved in the log-linear version, suggesting that log-transformation may fit the data marginally better. However, both models explain only a small proportion of the variability in wages, indicating that other factors not included in the model are likely significant in predicting wage outcomes .

In the log-linear model, the coefficient of IQ is 0.0013599 . This implies that for each additional point in IQ, the wage increases by approximately 0.13599% . In a log-linear context, coefficients can be interpreted as approximate percentages, assuming the change is small, which fits our case here.

The log transformation is important because wage distributions are typically right-skewed, and log transformation helps to normalize the data, stabilizing variance and allowing the model to meet linear regression assumptions more closely . This transformation changes the interpretation from an additive effect to a multiplicative effect, such that the coefficient now represents a percentage change rather than an absolute change in wage for each unit increase in IQ .

The root mean squared error (RMSE) is 77.235 for the linear model and 0.06265 for the log-linear model . A lower RMSE in the log-linear model suggests a better fit, indicating that predictions of the natural log of wages are closer to the actual data points than the predictions in the linear model. The magnitude of RMSE also informs us of the average distance between observed and predicted values, implying better precision in the log-transformed model .

The standard error for the IQ coefficient in the linear model is 0.1708609, and for the log-linear model, it is 0.0001386 . The relatively small standard errors suggest that the coefficient estimates are precise, indicating a consistently measurable effect of IQ on wages across the sampled population. The small standard error in the context of the log-linear model particularly indicates that even changes as minor as 0.14% due to IQ alterations are estimated with certainty .

In the linear regression, the constant term is 1024.364, implying that when IQ is zero (a hypothetical scenario), the wage would be expected to be approximately $1024.36 . In the log-linear model, the constant term is 6.943094, which represents the natural log of the expected wage when IQ is zero, corresponding to an expected wage of about 1034.21 dollars after exponentiation . Both interpretations are theoretical as IQ scores can't realistically be zero.

You might also like