We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c1c1a commit e3eae75Copy full SHA for e3eae75
docs/04_visualizations/2-3-area/index.md
@@ -28,15 +28,7 @@ sidebar_position: 2.3
28
### 数据示例
29
30
```py
31
-# 创建 DataFrame
32
-data = query('select * from yearly.a0806')
33
-
34
-# 转换为 DataFrame
35
-df = DataFrame(data)
36
37
-df = df.pivot(index="day", columns="name", values="value")
38
39
-return df
+select toDateTime(Time/1000) as Time, * from klines.spot_1d where Symbol = 'btc_usdt' and Exchange = 'Binance' order by Time limit 100
40
```
41
42
0 commit comments