I want to print a pivot table (self-formatted) in R. So, these summaries contain a few lines, and I work with RStudio and RScripts. Therefore, if I execute an operator like this:
print("Line 1") print("Line 2")
I would like to have a way out like
Line 1 Line 2
Instead i get
> print("Line 1") [1] "Line 1" > print("Line 2") [1] "Line 2"
Which method can help or what do I need to do to achieve the desired result?
source share