Reputation: 29
I have a folder which has
Sales_December.csv
Sales_January.csv
Sales_February.csv
etc.
How can i make pyspark read all of them into 1 dataframe?
Upvotes: 0
Views: 211
Reputation: 32
reduce(DataFrame.unionAll, <list>)
to combine them
into one single DataFrameUpvotes: 1