I am trying to split my Date Column which is a String Type right now into 3 columns Year, Month and Date. I use (PySpark):
split_date=pyspark.sql.functions.split
Try this :
split_date=pyspark.sql.functions.split(df['Date'], '[-/]')