Hi everyone,
I'd like to use a regression following the model as below :
With the Deltas being fixed effect.
I Created my dummy variables ij, ik and jk but when I try to regress, I unfortunately encounter a r103 error. Even reducing my dataset doesn't change anything.
As you mind guess, I'm not really used to stata so any help is welcome.
I'm actually blocked here so any suggestion will be welcomed as I really need to go further in my research.
I'm trying to compute the RCA index using the research paper by Elsa Leromain and Guianluca Orefice if anyone is interested. i correspond to the exporter country code and j to the importer's one, finally v correspond to the value of exportation in sector k. I computed my dummies as follow :
Then use it as follow in the regression:
Am I doing something wrong ?
Thank you.
I'd like to use a regression following the model as below :
Code:
ln(v) = Delta(ij) + Delta(ik) + Delta(jk)
I Created my dummy variables ij, ik and jk but when I try to regress, I unfortunately encounter a r103 error. Even reducing my dataset doesn't change anything.
As you mind guess, I'm not really used to stata so any help is welcome.
I'm actually blocked here so any suggestion will be welcomed as I really need to go further in my research.
I'm trying to compute the RCA index using the research paper by Elsa Leromain and Guianluca Orefice if anyone is interested. i correspond to the exporter country code and j to the importer's one, finally v correspond to the value of exportation in sector k. I computed my dummies as follow :
Code:
gen ij = group(i j)
Code:
reg lnv i.ij i.ik i.jk
Thank you.
Comment