I am trying to use the package Stargazer to "export" my estimation results into LaTeX code. I have read the stargazer manual and even tried to export selected rows without any luck. There are a lot of output for the package to handle.
I create an object
Summary <- summary(VAR(Vektorer, p=1, type="const", ic = c("AIC", "HQ", "SC", "FPE")))
Then, I use the stargazer package
stargazer(Summary)
and get the following error:
Error: Unrecognized object type.
Anyone familiar with this object type and how to export it into LaTeX code? I guess there re other packages which are more suitable for the object type. Unfortunately I am not very familiar with exporting R outputs into LaTeX.