Questions tagged [plm]

The plm package for R provides functions for linear models for panel data.

The plm package for R provides functions for linear models for panel data.

The package cover statistical concepts such as

  • Statistical tests for pannel data (e.g. for serial correlation)
  • General methods of moments (GMM) for pannel data
  • Random effects (RE)
  • Fixed Effects (FE)
  • First Difference (FD)

Tutorials:

136 questions
6
votes
1 answer

Hand computation for plm package in R for predicted values

I am trying to fully understand the ins and outs of the plm package in R. I have a dataset where I computed a fixed effects plm: mydata <- read.spss("G:/data.sav",use.value.labels=TRUE, to.data.frame = TRUE) attach(mydata) Y <- cbind(Y) X <-…