如何导出汇总结果,我无法使用stargazer。
stargazer(summary(my_plm_pooling_1, vcov = function(x) vcovHC(x)), type='text')
结果: 暗名错误 (x) <- dn : comprimento de 'dimnames' [2] não é igual ao tamanho do array
以前对我有用的是函数
capture_output
。
事情就像这样
out_summary <- summary(my_plm_pooling_1, vcov = function(x) vcovHC(x))
capture.output(out_summary, file = 'output_summary.txt')