I'm working with time series data and have run an ARDL regression using the ardlBound function from the dLagM package. I tried to export my results using stargazer; however, I believe stargazer is not readily compatible with ardlBound output.
Is there a way of reporting this output as a nice-looking reproducible table in R?
Below is sample data and code:
Thanks very much!
library(dLagM)
data(M1Germany)
data <- M1Germany[1:144,]
results <- ardlBound(data = data , formula = logprice ~ interest + logm1 , case = 2 ,
max.p = 3, max.q = 3)
The
modelsummary
package can summarize theARDL.model
object stored inresults$ARDL.model
:(Disclaimer: I am the
modelsummary
maintainer.)