I am looking for a reference to perform variable selection with panel data. I have 9 variables and want to test which variables to keep or remove. Someone recommended step-wise analysis, but I cannot find a resource for step-wise analysis with the panel data. I am currently working in R.
AData <- pdata.frame(Data1, index=c("Recipient","Year"))
random <- plm( y ~ x1 + x2 +
x3 + x4 + x5 +
x6 + x7 + x8 + x9,
data=AData, model= "random")
summary(random)