r – How to expand extracted value in console?

I extracted one cell from my dataframe using df[x,y]. It successfully appeared in my console but is not displaying fully given it’s a very long paragraph. How do I expand the cell I extracted into my console so that I could see all of the lines in the paragraph? It currently looks like this:

df[2,3]
# A tibble: 1 × 1
  text                                                                                                                              
  <chr>                                                                                                                             
1 After a long conversation, they left the room. Her husband went to the car to wait for her but she never showed u…
> 

I don’t want to be going back and forth between excel and R.

Read more here: Source link