Let's say we have data on the number of clicks per user over quite a long period of time. We can use, say Facebook Prophet, to forecast daily values given that we have enough historical data. That will be the total number of clicks for all users.
Additionally, we have several ways to segment users like operating system, country, acquisition channel (emails, ads, etc). This makes the structure not strictly hierarchical but rather grouped.
Having read a few articles on approaching this task, it seems that the three most common approaches are predicting on the most granular level, predicting on the least granular level, or setting a cutoff and trying to combine the former two.
Given that there might be around 200 countries, it feels like it's a crazy idea to have a model for each possible combination. Using weights/ratios from historical data sounds plausible for few levels of disaggregation, but then I guess the accuracy would drop tremendously once the depth of disaggregation rises.
Can you please provide some sort of guidance regarding this class of problems? There doesn't seem to be plenty of information on grouped time-series forecasting.