@tapdb/tapdb-data-analysis 0.1.26 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ description: >
|
|
|
11
11
|
|
|
12
12
|
# TapDB 数据分析
|
|
13
13
|
|
|
14
|
-
> Skill 版本:v0.1.
|
|
14
|
+
> Skill 版本:v0.1.27
|
|
15
15
|
|
|
16
16
|
通过 Python 脚本调用 TapDB 运营数据查询接口,获取游戏指标数据并分析。
|
|
17
17
|
|
|
@@ -119,6 +119,13 @@ python3 <SKILL_DIR>/scripts/tapdb_query.py describe active # 查看接口
|
|
|
119
119
|
| `--no-truncate` | 不截断输出 | |
|
|
120
120
|
| `-r` | 区域 cn/sg | `-r sg` |
|
|
121
121
|
|
|
122
|
+
### 时间范围硬规则(必须遵守)
|
|
123
|
+
|
|
124
|
+
- ✅ 连续时间范围直接查询
|
|
125
|
+
- ✅ TapDB 单次查询最长 **180 天**(包含起止日)
|
|
126
|
+
- ❌ 不要把时间范围按周拆分成多次查询(需要周粒度:用 `--group-unit week` **一次性**范围查询)
|
|
127
|
+
- ⚠️ 仅当用户明确要求“按日趋势/按天对比/定位异常日期”时才按天拆分;否则保持一次范围查询
|
|
128
|
+
|
|
122
129
|
### 查询示例
|
|
123
130
|
|
|
124
131
|
```bash
|