How to show full column content in a Spark Dataframe?
results.show(20, false)
will not truncate. Check the source
20
is the default number of rows displayed when show()
is called without any arguments.
If you put results.show(false)
, results will not be truncated