I am using spark-csv to load data into a DataFrame. I want to do a simple query and display the content:
val df = sqlContext.read.format(\"com.databricks.spa
Below code would help to view all rows without truncation in each column
df.show(df.count(), False)