I have datasets that contains the :
date in this format (yyyy-MM-dd)
Product (3 distinct product)
CountOfShipment (the target)
I want to make either a predictive model or a time series forecast in Alteryx that could predict the CountOfShipment for the next year.
let's just say that the dataset ends in 2023-12-31
and I want to predict the CountOfShipment for 2024 like this:
2024 Jan for product1 = (the predicted CountOfShipment)
2024 Jan for product2 = (the predicted CountOfShipment)
2024 Jan for product3 = (the predicted CountOfShipment)
2024 Feb for product1 = (the predicted CountOfShipment)
2024 Feb for product2 = (the predicted CountOfShipment)
2024 Feb for product3 = (the predicted CountOfShipment)
and so on till 2024 Dec
how to achieve this in Alteryx?