I am using the plm function (from package plm) using fixed effects.
I need to guarantee that I am using heteroscedasticity-robust standard errors while using the function plm.
lag1.1 <- plm(E.primary ~ lv18_bank_c + Expense + lag(Expense, 1), data=panel_exog1, index=c("Country", "Year"), model="within")
How do I get heteroscedasticity-robust standard errors for that model?