Basic question from Matlab beginner
6 次查看(过去 30 天)
显示 更早的评论
I have data on Wage, Age, Years of Schooling and Gender. I then do a simple OLS regression of
Wage = b0 + b1Age +b2Age_sq+b3Years_of_schooling+b4Gender
I then obtain the expected wage, the coefficient estimates and the standard errors. This I have done. I am now stuck on a more basic question:
I want to plot the expected wage against Age for individuals with 5 years of schooling separately for Boys and Girls (one line for each gender). I also want to include the confidence intervals in this plot. I have spent way too long trying to figure this out. Would any kind individual care to help me?
Thanks, Nisse
0 个评论
回答(2 个)
Marc
2014-3-6
For plotting Wage vs. Age, see anonymous functions ('@'). You can define the range for your age and using the coeficients you found along with your other fixed values, you can get estimated wages.
As for confidence intervals, this is way more tricky. Do you have the stats toolbox? The function regress() may help but you are going to have to take some liberties and make some assumptions. Your confidence around age would be better if your data is focused on fixing the other variables.
So depending on how you got your data and how you fit your parametric model will determine how well your confidence is in your estimates.
2 个评论
Chandrasekhar
2014-3-6
plot(age1,wage1); %for 1st person
hold
plot(age2,wage2);for 2ns person
...
....
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interpolation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!