I am new to forecasting and have been using the fpp3 package and Hyndman's to practice on some fabricated data I obtained online. I have a specific challenge related to handling 0 values in my dataset.
Here's the context: I have three years of daily sales data for a retail store. The store is closed on weekends (Saturday and Sunday) as well as holidays such as Thanksgiving and Christmas. For these closed days, I have 0 values in the sales column.
My ultimate goal is to predict one month of sales for the store. However, I'm facing difficulties when dealing with the 0 values. Initially, I removed these 0 values from the dataset, but it caused issues as some functions recognized them as missing dates in the data.
I would appreciate guidance on how to handle the 0 values for the days when the store is closed. How can I manage these values without causing problems in my forecasting process?
Thank you for any advice or direction you can provide!