4

How can I remove the stars and notes from a regression table output using stargazer?

I tried including:

star.cutoffs = NA

It removed the stars, however, at the end of the table it appears "Note: NA" which I would like also to remove.

user2246905
  • 1,029
  • 1
  • 12
  • 31

1 Answers1

11

In order to remove the note section you can add the argument omit.table.layout = "n"

You can see this cheatsheet : http://jakeruss.com/cheatsheets/stargazer.html and this section inside it.

After loading stargazer, have also a look at ?"table layout characters" for a full list of codes to be used within the omit.table.layout argument.