Displaying 1 result from an estimated 1 matches for "city11".
Did you mean:
city10
2004 Apr 29
3
Dummies in R
...==2000
and
(2) Create a Time-Dummy-Variable
g byte T2000=0
replace T2000=1 if year==2000
(3) I need the City DUmmy for the following combination: I have the financial flows between two cities in the state and I need the paired-Dummy for the exporter (state1) and importer (state2):
g byte city11=0
replace city11=1 if state1==12¦state2==12
(4) I am interesting in residuals for particular city==12. I have the Dummy for City==12 and regress it on Y-Variable. How could I extract from the output in R the residulas for city==12 (1) to plot this residuals and residuals from other regions in box...