Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • About SEM

    I want to run sem on the famous data set mroz.dta from Wooldridge's introductory econometrics.
    Code:
    sem (hours<-lwage educ age kidslt6 nwifeinc) (lwage<-hours educ exper expersq), cov(e.hours*e.lwage)
    but it doesn't work.

  • #2
    Maybe avoiding (hours <- lwage) (lwage <- hours) might help.

    Comment


    • #3
      Well here, to be clearer:
      Code:
      (hours <- lwage) (lwage <- hours)
      Code:
      covvariance(e.hours*e.lwage)
      Pick one.

      Comment


      • #4
        Why when i add cov(e.hours*e.lwage) to sem, it doesn't converge, without the cov, it give the result?

        Comment

        Working...
        X