Hi Statalist!
I have a panel data set with multiple variables (X1, X2, ...). I am trying to run a multivariate regression for each country separately and store the coefficients in a single table. So far this is what I have:
tempname output
postfile `output' ID X1 X2 X3 X4 using output.dta,replace
levelsof ID, local(C)
foreach i of local C{
qui regress Y X1 X2 X3 X4 if id==`i'
post `output' (`i') (`=_b[X1]') (`=_b[X2]') (`=_b[X3]') (`=_b[X4]')
}
postclose `output'
My problem is that the "ID" variable has a long format and I am getting numbers in the output file, instead of actual country names. I do have a variable "country" that has a string format, but I just don't know how to transfer it to this new output file.
Any help would be much appreciated.
Related Posts with Storing values of a multivariate regression
"0 (empty)" during logistic regressionI was measuring odds ratio for systolic hypertension using bmi as a variable, but when I do so the 4…
Filling missing observations with successor and predecessors ID's valuesDear Stata Users, Can you please help me with the following issue: I have a company (“gvkey”) with a…
calculating how percentiles performed in a panel datasetDear Statalist, My panel dataset is as follows year firm size sales 2000 firm1 size1 sales1 …
Graph of Parallel Trend LinesHello, I have the data set below. This is a data set of total number of visits to the emergency room…
Calculating a gender wage gapI have a data set with University degree subjects, salary bands and then the number of men and women…
Subscribe to:
Post Comments (Atom)
0 Response to Storing values of a multivariate regression
Post a Comment