If one has a time series dataset, that contain columns of item number, Date, qty_item_sold. If the frequency of the dataset is 'MS'(Month start) and there are missing value('0.0') in some months due to the lack of purchase orders for those Items how does one handle this type of data set and prepare it for forecasting. Do we drop the rows containing the null values, or do we apply time series missingness mechanisms to fill them in?
I tried dropping the rows and applying statsforecast using models such as AutoArima, AutoETS, Naive. But I don't think the models would are forecasting the dataset properly.