I would like to display the entire Apache Spark SQL DataFrame with the Scala API. I can use the show() method:
show()
myDataFrame.show(Int.MaxValue)
Try with,
df.show(35, false)
It will display 35 rows and 35 column values with full values name.