How to change dataframe column names in pyspark?

I come from pandas background and am used to reading data from CSV files into a dataframe and then simply changing the column names to something useful using the simple command: df.columns = new_column_name_list However, the same doesn’t work in pyspark dataframes created using sqlContext. The only solution I could figure out to do this … Read more