Getting SE, p-value & t-value in seperate columns

36 views Asked by At

the title says it all. I'm trying to figure out, how to get SE, p-value, & t-value in their own columns. So they are in the same line as the coeff and not beneath it.

This is my code so far:

stargazer(m1, type = "html", style = "asr", intercept.top = T, 
          intercept.bottom = F, single.row = F, report=("vcstp")) %>% 
    write_lines(file = "test.html")

So far, it puts all the data in to one column which makes the output way too long. I'd like to have it in their seperate columns for better readability.

This is what it looks like now (bad): https://ibb.co/8r0B5Dy

This is the direction i want to go (better): https://ibb.co/0Zm1XXD

Any ideas?

Greets,

Aves

Tried several commands, including single.row = T, but that only puts SE behind the coeff. The rest is still beneath it.

0

There are 0 answers