Borrar filtros
Borrar filtros

Basic question from Matlab beginner

8 visualizaciones (últimos 30 días)
Nisse
Nisse el 6 de Mzo. de 2014
Comentada: Nisse el 6 de Mzo. de 2014
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

Respuestas (2)

Marc
Marc el 6 de Mzo. de 2014
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 comentarios
Marc
Marc el 6 de Mzo. de 2014
This may not apply but Baysian estimation may be something to look at.
Nisse
Nisse el 6 de Mzo. de 2014
I am drawing a blank on how to plot Wage vs. Age while fixing the values of the other columns in the X matrix (that hold all the explanatory variables). I have tried solving this problem for days now, and am really looking for the beginning of a code that will do it. As long as I have the first part of such a code I think I can solve it myself

Iniciar sesión para comentar.


Chandrasekhar
Chandrasekhar el 6 de Mzo. de 2014
plot(age1,wage1); %for 1st person
hold
plot(age2,wage2);for 2ns person
...
....

Categorías

Más información sobre Descriptive Statistics en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by