Unfortunately in my panel I have missing data for a number of countries over a number of years e.g Yemen has no recorded GDP data between 86-88. Anyway after using STATA's multiple imputation commands to correct for this data when I go to check what the imputed GDP data is I see the values are negative. Can anyone tell me why does would be the case, as I'm not very sure about the workings of multiple imputation being honest. My commands are as follows
*Dealing with missing data by data imputation
mi set flong
summarize
mi misstable nested
mi misstable patterns
mi misstable patterns , bypatterns
mi register imputed rgdpl ki dist reserves
mi register regular oilp oilc exports PR CL price free partiallyfree notfree
mi describe
set seed 2434
mi impute mvn rgdpl ki dist reserves = oilp oilc exports PR CL price i.free i.partiallyfree i.notfree, add(5)
*Dealing with missing data by data imputation
mi set flong
summarize
mi misstable nested
mi misstable patterns
mi misstable patterns , bypatterns
mi register imputed rgdpl ki dist reserves
mi register regular oilp oilc exports PR CL price free partiallyfree notfree
mi describe
set seed 2434
mi impute mvn rgdpl ki dist reserves = oilp oilc exports PR CL price i.free i.partiallyfree i.notfree, add(5)
Comment