How to skip the first line from csv and consider the second line as a header in pyspark dataframe:
prod,daily,impress
id,name,country
01,manish,USA
02,jhon,UK
03,willson,Africa
How do I skip the first line (prod daily impress) and consider (id name country) as a header using spark dataframe.