1-我有什么
我有一个历史数据,每个商店有以下数据(约5.000个商店)
例如:
buildtype1 : com.android.example(with dev server for Google Play)
buildtype2 : com.android.example(with stg server for Google Play)
buildtype3 : com.android.example(with prod server for Google Play)
buildtype4 : com.android.example.dev(with dev server for Development)
buildtype5 : com.android.example.stg(with stg server for Development)
buildtype6 : com.android.example.prod(with prod server for Development.)
从每个月开始,我的组合将比上个月有所增加,而从上个月的组合的目标将有所增加
例如:
JUNE | JULY
STORE Mix Goal | STORE Mix Goal
A 20% 19% | A 20% 21%
B 18% 18% | B 17% 20%
C 25% 27% | C 26% 26%
2-我想做什么
我想以R中最优化的方式执行以下操作:
使用历史数据计算将每个商店划分成集群的每个商店的下一个目标
所以R应该:
3-可能的解决方案示例:
JUNE -> JULY
STORE Growth in Mix Growth in Goal
A 0% +1%
B -1% +2%
C 1% +1%
在此解决方案示例中,每个商店的下一个目标(八月)将是:
4-可复制的示例
Range of Mix | Growth in goal
0-10% | +3%
10-18% | +2,5%
18%-27% | +1,5%
... | ...
非常感谢您