Closed hughjonesd closed 3 years ago
Example:
>ht <- huxtable(a = 1:5, b = 1:5) > print_screen(ht, colnames = F) a b 1 1 2 2 3 3 4 4 5 5 >
NB: seems to be avoided within Rstudio, which always prints a newline after output:
Rstudio:
> cat("foo") foo > cat("foo\n") foo
Terminal:
> cat("foo") foo> cat("foo\n") foo >
Example: