Displaying 1 result from an estimated 1 matches for "outdata3".
Did you mean:
outdata
2007 Aug 14
0
Panel data and imputed datasets
...for the data? Or have I
gone about this in entirely the wrong way?
Thanks in advance for the help.
Best,
-N
Here's the code I have so far:
#Read in the imputed datasets
data1 <- read.dta("outdata1.dta")
data2 <- read.dta("outdata2.dta")
data3 <- read.dta("outdata3.dta")
data4 <- read.dta("outdata4.dta")
data5 <- read.dta("outdata5.dta")
#Set the datasets as panels (for subsequent analysis in plm)
pdata.frame(data1, "country", time="year")
pdata.frame(data2, "country", time="year")
pdata....