Hi everybody,
I have a very simple (I think) question. I have the following database regarding the time in which someone has been interrupted in a conversation and weather the tone of the interruption was angry or not:
This database can be written in a short way like this:
If I want to know the effect of gender on the number of interruptions someones receives in a conversation a regression would be:
Which should give the same result either I run it using the data of Table 1 or the data of Table 2. However I'm not having the same results. Why?
While seems natural for me to use table 1 to know the effect of gender on the tone of the interruption (variable angry) doing
I don't feel is the right arrangement of the database for the first question.
Thanks a lot,
JJ
I have a very simple (I think) question. I have the following database regarding the time in which someone has been interrupted in a conversation and weather the tone of the interruption was angry or not:
interruption | gender | age | angry | time | id |
3 | 1 | 37 | 1 | 10 | 1 |
3 | 1 | 37 | 0 | 15 | 1 |
3 | 1 | 37 | 1 | 20 | 1 |
2 | 0 | 25 | 0 | 12 | 2 |
2 | 0 | 25 | 1 | 18 | 2 |
interruption | gender | age | id |
3 | 1 | 37 | 1 |
2 | 0 | 25 | 2 |
Code:
reg interruption gender
While seems natural for me to use table 1 to know the effect of gender on the tone of the interruption (variable angry) doing
Code:
reg angry gender age
Thanks a lot,
JJ
Comment