在 Google 张中预测一个月的数据
Forecasting one month data in Google Sheets
我正在尝试根据 iOS14 操作系统的采用率预测 DAU 用户的百分比。例如,我有前 8 天的采用率 (in table 1) % DAU 用户的 8 天日期,但我想计算 30 天(直到 5 月底)。
Table 1:采用率
Date
Adoption rate
April 26, 2021
0.70%
April 27, 2021
2.07%
April 28, 2021
3.71%
April 29, 2021
4.77%
April 30, 2021
6.16%
May 1, 2021
6.88%
May 2, 2021
7.15%
May 3, 2021
7.66%
Table 2: % DAU
Date
Adoption rate
April 26, 2021
100.00%
April 27, 2021
92.27%
April 28, 2021
93.21%
April 29, 2021
91.39%
April 30, 2021
90.32%
May 1, 2021
83.62%
May 2, 2021
81.60%
May 3, 2021
80.23%
任何人都可以指出我正确的方向吗?提前谢谢你。
也许 TREND
函数可以帮助您,仅适用于 table 2?
TREND(known_data_y, [known_data_x], [new_data_x], [b])
我正在尝试根据 iOS14 操作系统的采用率预测 DAU 用户的百分比。例如,我有前 8 天的采用率 (in table 1) % DAU 用户的 8 天日期,但我想计算 30 天(直到 5 月底)。
Table 1:采用率
Date | Adoption rate |
---|---|
April 26, 2021 | 0.70% |
April 27, 2021 | 2.07% |
April 28, 2021 | 3.71% |
April 29, 2021 | 4.77% |
April 30, 2021 | 6.16% |
May 1, 2021 | 6.88% |
May 2, 2021 | 7.15% |
May 3, 2021 | 7.66% |
Table 2: % DAU
Date | Adoption rate |
---|---|
April 26, 2021 | 100.00% |
April 27, 2021 | 92.27% |
April 28, 2021 | 93.21% |
April 29, 2021 | 91.39% |
April 30, 2021 | 90.32% |
May 1, 2021 | 83.62% |
May 2, 2021 | 81.60% |
May 3, 2021 | 80.23% |
任何人都可以指出我正确的方向吗?提前谢谢你。
也许 TREND
函数可以帮助您,仅适用于 table 2?
TREND(known_data_y, [known_data_x], [new_data_x], [b])