Skip number of rows when reading CSV files

THIAM_HUATTAN
Valued Contributor

staticDataFrame = spark.read.format("csv")\ .option("header", "true").option("inferSchema", "true").load("/FileStore/tables/Consumption_2019/*.csv")

when above, I need an option to skip say first 4 lines on each CSV file, How do I do that?