Write spark dataframe to file using python and ‘|’ delimiter
I have constructed a Spark dataframe from a query. What I wish to do is print the dataframe to a text file with all information delimited by ‘|’, like the following: +——-+—-+—-+—-+ |Summary|col1|col2|col3| +——-+—-+—-+—-+ |row1 |1 |14 |17 | |row2 |3 |12 |2343| +——-+—-+—-+—-+ How can I do this? Answer You can try to write … Read more