+ Reply to Thread
Results 1 to 8 of 8

Thread: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

  1. #1
    Points: 3,774, Level: 38
    Level completed: 83%, Points required for next Level: 26

    Location
    Currently Southampton, UK
    Posts
    40
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)



    Hi All,

    I am doing Brunell-Bond panel data analysis and the results seem completely counter-intuitive. The DV is a food prices index - and so if its values increase it implies more difficulty with accessing food.

    Is the problem with the index? Is there any way to transform it or should I use another DV (where if its values increase it would be positive)

    Thanks.

  2. #2
    RotParaTon
    Points: 47,169, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardCommunity AwardMaster TaggerFrequent Poster
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,199
    Thanks
    212
    Thanked 1,642 Times in 1,403 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

    I don't believe you've actually told us what the problem is other than you think your results are counter-intuitive. What even were your results?
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  3. #3
    Points: 3,774, Level: 38
    Level completed: 83%, Points required for next Level: 26

    Location
    Currently Southampton, UK
    Posts
    40
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

    Quote Originally Posted by Dason View Post
    I don't believe you've actually told us what the problem is other than you think your results are counter-intuitive. What even were your results?
    Thanks, for example I have a large negative coefficient for urbanization (proportion urban) and positive coefficients for technology (different internet, mobile use indicators) and level of development.

    So for example: if the level of development increases, the food price index also increases, which is not true - we observe the opposite. So, all significant coefficient show counter-intuitive results...

  4. #4
    RotParaTon
    Points: 47,169, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardCommunity AwardMaster TaggerFrequent Poster
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,199
    Thanks
    212
    Thanked 1,642 Times in 1,403 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

    Ok so that's what happens you run the analysis with multiple predictors. If you run it with just the single predictor (level of development) do you see the result you expected?
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  5. #5
    Points: 3,774, Level: 38
    Level completed: 83%, Points required for next Level: 26

    Location
    Currently Southampton, UK
    Posts
    40
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

    I will need to check tomorrow at school as don't have STATA on my laptop. Do you suggest running several models with one predictor at a time (so I can't control for other variables?)? Also, which post estimation tests should I do? I tried Sargan, but it did not look very good. Thank you.

  6. #6
    RotParaTon
    Points: 47,169, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardCommunity AwardMaster TaggerFrequent Poster
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,199
    Thanks
    212
    Thanked 1,642 Times in 1,403 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

    No I don't suggest that. It's just that the interpretation you're trying to apply to determine if the results are counter intuitive or not don't really work well when you have multiple predictors. If, on the other hand, when you only used a single predictor and things were flipped it might indicate something was coded wrong (or maybe you just don't understand the process as much as you thought).
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  7. #7
    RotParaTon
    Points: 47,169, Level: 100
    Level completed: 0%, Points required for next Level: 0
    Awards:
    Discussion EnderPosting AwardCommunity AwardMaster TaggerFrequent Poster
    Dason's Avatar
    Location
    Ames, IA
    Posts
    9,199
    Thanks
    212
    Thanked 1,642 Times in 1,403 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)

    For example let's say I had two predictors (x1 and x2) and one response (y). x1 and y might have a nice positive relationship:



    And x2 and y might also have a nice positive relationship:



    But when I do a regression using both x1 and x2 this is what I end up with:

    Code: 
    (Intercept)           x1           x2  
          3.178        1.451       -0.634
    Which tells me my estimated regression line is \hat{y} = 3.178 + 1.451x_1 - 0.634x_2

    But clearly x2 and y have a positive relationship! The problem is that when you're interpreting the slope on it's own you completely ignore the effect of x1. In this case x1 and x2 are highly related. If x1 is large then x2 is large as well (as a matter of fact I created x2 by adding a uniform random variable to x1). So the interpretation of the parameter associated with x2 is the change in the prediction if we increase x2 by 1 unit and hold everything else constant. But I just told you how I created x2 so "holding everything else constant" isn't necessarily something that can be done.

    Just for the record I generated that data by setting

    Code: 
    x1 <- 1:20
    x2 <- x1 + runif(20)
    y <- 3 + x1 -.2*x2 + rnorm(20, 0, .3)
    So x1 = 1, ..., 20
    x2 = x1 + random uniform on (0,1)

    The true relationship between y and x1, x2 being
    y_i = 3 + 1x_{1i} -0.2x_{2i} + e_i where e_i \sim N(0, .3^2)
    "His programming is malfunctioning. It begins! Get your weapons, he's going to become a killbot!!!" - bryangoodrich

  8. The Following User Says Thank You to Dason For This Useful Post:

    SylviaS (04-11-2012)

  9. #8
    Points: 3,774, Level: 38
    Level completed: 83%, Points required for next Level: 26

    Location
    Currently Southampton, UK
    Posts
    40
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Re: Counter-intuitive results with Bold-Brunell panel data estimator (DV-INDEX)


    Thanks for taking the time to explain! What I was thinking is that the way index is constructed might also cause a problem. At first the direction of the association seems ok - e.g. level of development increases or technology, the value of FPI (food price index) increases, but the problem is that if FDI increases it is actually negative, because the higher the index, the worse access to food.

    Does it make sense? Can that be a problem and if so is there a way to transform this index (the values are between 100 and around 300, mostly between 100 and 150).

    I will do more work on that tomorrow, maybe try a different variable...

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts








Advertise on Talk Stats