Pyspark Add_months

from pyspark.sql.functions import add_months
df.select(add_months(df.dt, 1))
Vinicius VALE