A possible duplicate of this unanswered question, adding code/screenshot here to hopefully clarify what the issue is.
When I run a chunk that outputs a data frame, I'm only getting one column per screen. I.e., running
library(tidyverse)
df %>%
select(col1, col2)
Produces the image below, where only col1 is displayed, and I have to click the arrow (not shown) to see the other column.
This seems to happen because col2 is a text field with several hundred characters, and so RStudio decides to give it as much real estate as possible, rather than placing it next to col1 (wasting all that space for the sake of displaying a handful of more characters).
Is it possible to override this setting? If so, can col2's output also be wrapped to screen width?