I am using pyspark to read a parquet file like below:
my_df = sqlContext.read.parquet(\'hdfs://myPath/myDB.db/myTable/**\')
Then when I do
Yes: call the toPandas method on your dataframe and you'll get an actual pandas dataframe !
toPandas