I want to compare the estimations of the following models but I don't know if I can estimate models (5) with the plm package:
1/ pooled -> Yit
fit.pooling <- plm(form, data = pdata, model = "pooling")
2/ Within (ind/time/both effects) -> Yit - Yi. / Yit - Yt. / Yit - Yi. - Yt.
fit.fe <- plm(form, data = pdata, model = "within", effect="ind"/"time"/"twoways")
3/ Between (ind/time effects)-> Yi. / Yt.
fit.bet <- plm(form, data = pdata, model = "between", effect="ind"/"time")
4/ Random effect (ind/time/both effects)-> Yit - aYi. / Yit - aYt. / Yit - aYi. - bYt.
fit.re <- plm(form, data = pdata, model = "random", effect="ind"/"time"/"twoways")
5/ Random effect with fixed time effect or Random effect with fixed ind effect ? -> Yit - aYi. - Yt. / Yit - aYt. - Yi.
Can I estimate those models with plm package?