Skip to content

Commit 45ae637

Browse files
committed
fix number in udf library 2.0.x tree model
1 parent 95ea2ca commit 45ae637

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

src/zh/UserGuide/Master/Tree/SQL-Manual/UDF-Libraries_apache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4447,7 +4447,7 @@ select xcorr(s1, s2) from root.test.d1 where time <= 2020-01-01 00:00:05
44474447
create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimestampRepair'
44484448
```
44494449

4450-
### 7.2 函数简介
4450+
#### 函数简介
44514451

44524452
本函数用于时间戳修复。根据给定的标准时间间隔,采用最小化修复代价的方法,通过对数据时间戳的微调,将原本时间戳间隔不稳定的数据修复为严格等间隔的数据。在未给定标准时间间隔的情况下,本函数将使用时间间隔的中位数 (median)、众数 (mode) 或聚类中心 (cluster) 来推算标准时间间隔。
44534453

@@ -4463,7 +4463,7 @@ create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimesta
44634463

44644464
**输出序列:** 输出单个序列,类型与输入序列相同。该序列是修复后的输入序列。
44654465

4466-
### 7.3 使用示例
4466+
#### 使用示例
44674467

44684468
#### 指定标准时间间隔
44694469

@@ -4542,7 +4542,7 @@ select timestamprepair(s1) from root.test.d2
45424542
+-----------------------------+--------------------------------+
45434543
```
45444544

4545-
### 7.4 ValueFill
4545+
### 7.2 ValueFill
45464546

45474547
#### 注册语句
45484548

@@ -4659,7 +4659,7 @@ select valuefill(s1,"method"="previous") from root.test.d2
46594659
+-----------------------------+-------------------------------------------+
46604660
```
46614661

4662-
### 7.5 ValueRepair
4662+
### 7.3 ValueRepair
46634663

46644664
#### 注册语句
46654665

@@ -4781,7 +4781,7 @@ select valuerepair(s1,'method'='LsGreedy') from root.test.d2
47814781
+-----------------------------+-------------------------------------------------+
47824782
```
47834783

4784-
### 7.6 MasterRepair
4784+
### 7.4 MasterRepair
47854785

47864786
#### 函数简介
47874787

@@ -4843,7 +4843,7 @@ select MasterRepair(t1,t2,t3,m1,m2,m3) from root.test
48434843
+-----------------------------+-------------------------------------------------------------------------------------------+
48444844
```
48454845

4846-
### 7.7 SeasonalRepair
4846+
### 7.5 SeasonalRepair
48474847

48484848
#### 函数简介
48494849
本函数用于对周期性时间序列的数值进行基于分解的修复。目前,本函数支持两种方法:**Classical**使用经典分解方法得到的残差项检测数值的异常波动,并使用滑动平均修复序列;**Improved**使用改进的分解方法得到的残差项检测数值的异常波动,并使用滑动中值修复序列。

src/zh/UserGuide/Master/Tree/SQL-Manual/UDF-Libraries_timecho.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4434,7 +4434,7 @@ select xcorr(s1, s2) from root.test.d1 where time <= 2020-01-01 00:00:05
44344434
create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimestampRepair'
44354435
```
44364436

4437-
### 7.2 函数简介
4437+
#### 函数简介
44384438

44394439
本函数用于时间戳修复。根据给定的标准时间间隔,采用最小化修复代价的方法,通过对数据时间戳的微调,将原本时间戳间隔不稳定的数据修复为严格等间隔的数据。在未给定标准时间间隔的情况下,本函数将使用时间间隔的中位数 (median)、众数 (mode) 或聚类中心 (cluster) 来推算标准时间间隔。
44404440

@@ -4450,7 +4450,7 @@ create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimesta
44504450

44514451
**输出序列:** 输出单个序列,类型与输入序列相同。该序列是修复后的输入序列。
44524452

4453-
### 7.3 使用示例
4453+
#### 使用示例
44544454

44554455
#### 指定标准时间间隔
44564456

@@ -4529,7 +4529,7 @@ select timestamprepair(s1) from root.test.d2
45294529
+-----------------------------+--------------------------------+
45304530
```
45314531

4532-
### 7.4 ValueFill
4532+
### 7.2ValueFill
45334533

45344534
#### 注册语句
45354535

@@ -4646,7 +4646,7 @@ select valuefill(s1,"method"="previous") from root.test.d2
46464646
+-----------------------------+-------------------------------------------+
46474647
```
46484648

4649-
### 7.5 ValueRepair
4649+
### 7.3 ValueRepair
46504650

46514651
#### 注册语句
46524652

@@ -4768,7 +4768,7 @@ select valuerepair(s1,'method'='LsGreedy') from root.test.d2
47684768
+-----------------------------+-------------------------------------------------+
47694769
```
47704770

4771-
### 7.6 MasterRepair
4771+
### 7.4 MasterRepair
47724772

47734773
#### 函数简介
47744774

@@ -4830,7 +4830,7 @@ select MasterRepair(t1,t2,t3,m1,m2,m3) from root.test
48304830
+-----------------------------+-------------------------------------------------------------------------------------------+
48314831
```
48324832

4833-
### 7.7 SeasonalRepair
4833+
### 7.5 SeasonalRepair
48344834

48354835
#### 函数简介
48364836
本函数用于对周期性时间序列的数值进行基于分解的修复。目前,本函数支持两种方法:**Classical**使用经典分解方法得到的残差项检测数值的异常波动,并使用滑动平均修复序列;**Improved**使用改进的分解方法得到的残差项检测数值的异常波动,并使用滑动中值修复序列。

src/zh/UserGuide/latest/SQL-Manual/UDF-Libraries_apache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4447,7 +4447,7 @@ select xcorr(s1, s2) from root.test.d1 where time <= 2020-01-01 00:00:05
44474447
create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimestampRepair'
44484448
```
44494449

4450-
### 7.2 函数简介
4450+
#### 函数简介
44514451

44524452
本函数用于时间戳修复。根据给定的标准时间间隔,采用最小化修复代价的方法,通过对数据时间戳的微调,将原本时间戳间隔不稳定的数据修复为严格等间隔的数据。在未给定标准时间间隔的情况下,本函数将使用时间间隔的中位数 (median)、众数 (mode) 或聚类中心 (cluster) 来推算标准时间间隔。
44534453

@@ -4463,7 +4463,7 @@ create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimesta
44634463

44644464
**输出序列:** 输出单个序列,类型与输入序列相同。该序列是修复后的输入序列。
44654465

4466-
### 7.3 使用示例
4466+
#### 使用示例
44674467

44684468
#### 指定标准时间间隔
44694469

@@ -4542,7 +4542,7 @@ select timestamprepair(s1) from root.test.d2
45424542
+-----------------------------+--------------------------------+
45434543
```
45444544

4545-
### 7.4 ValueFill
4545+
### 7.2 ValueFill
45464546

45474547
#### 注册语句
45484548

@@ -4659,7 +4659,7 @@ select valuefill(s1,"method"="previous") from root.test.d2
46594659
+-----------------------------+-------------------------------------------+
46604660
```
46614661

4662-
### 7.5 ValueRepair
4662+
### 7.3 ValueRepair
46634663

46644664
#### 注册语句
46654665

@@ -4781,7 +4781,7 @@ select valuerepair(s1,'method'='LsGreedy') from root.test.d2
47814781
+-----------------------------+-------------------------------------------------+
47824782
```
47834783

4784-
### 7.6 MasterRepair
4784+
### 7.4 MasterRepair
47854785

47864786
#### 函数简介
47874787

@@ -4843,7 +4843,7 @@ select MasterRepair(t1,t2,t3,m1,m2,m3) from root.test
48434843
+-----------------------------+-------------------------------------------------------------------------------------------+
48444844
```
48454845

4846-
### 7.7 SeasonalRepair
4846+
### 7.5 SeasonalRepair
48474847

48484848
#### 函数简介
48494849
本函数用于对周期性时间序列的数值进行基于分解的修复。目前,本函数支持两种方法:**Classical**使用经典分解方法得到的残差项检测数值的异常波动,并使用滑动平均修复序列;**Improved**使用改进的分解方法得到的残差项检测数值的异常波动,并使用滑动中值修复序列。

src/zh/UserGuide/latest/SQL-Manual/UDF-Libraries_timecho.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4434,7 +4434,7 @@ select xcorr(s1, s2) from root.test.d1 where time <= 2020-01-01 00:00:05
44344434
create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimestampRepair'
44354435
```
44364436

4437-
### 7.2 函数简介
4437+
#### 函数简介
44384438

44394439
本函数用于时间戳修复。根据给定的标准时间间隔,采用最小化修复代价的方法,通过对数据时间戳的微调,将原本时间戳间隔不稳定的数据修复为严格等间隔的数据。在未给定标准时间间隔的情况下,本函数将使用时间间隔的中位数 (median)、众数 (mode) 或聚类中心 (cluster) 来推算标准时间间隔。
44404440

@@ -4450,7 +4450,7 @@ create function timestamprepair as 'org.apache.iotdb.library.drepair.UDTFTimesta
44504450

44514451
**输出序列:** 输出单个序列,类型与输入序列相同。该序列是修复后的输入序列。
44524452

4453-
### 7.3 使用示例
4453+
#### 使用示例
44544454

44554455
#### 指定标准时间间隔
44564456

@@ -4529,7 +4529,7 @@ select timestamprepair(s1) from root.test.d2
45294529
+-----------------------------+--------------------------------+
45304530
```
45314531

4532-
### 7.4 ValueFill
4532+
### 7.2ValueFill
45334533

45344534
#### 注册语句
45354535

@@ -4646,7 +4646,7 @@ select valuefill(s1,"method"="previous") from root.test.d2
46464646
+-----------------------------+-------------------------------------------+
46474647
```
46484648

4649-
### 7.5 ValueRepair
4649+
### 7.3 ValueRepair
46504650

46514651
#### 注册语句
46524652

@@ -4768,7 +4768,7 @@ select valuerepair(s1,'method'='LsGreedy') from root.test.d2
47684768
+-----------------------------+-------------------------------------------------+
47694769
```
47704770

4771-
### 7.6 MasterRepair
4771+
### 7.4 MasterRepair
47724772

47734773
#### 函数简介
47744774

@@ -4830,7 +4830,7 @@ select MasterRepair(t1,t2,t3,m1,m2,m3) from root.test
48304830
+-----------------------------+-------------------------------------------------------------------------------------------+
48314831
```
48324832

4833-
### 7.7 SeasonalRepair
4833+
### 7.5 SeasonalRepair
48344834

48354835
#### 函数简介
48364836
本函数用于对周期性时间序列的数值进行基于分解的修复。目前,本函数支持两种方法:**Classical**使用经典分解方法得到的残差项检测数值的异常波动,并使用滑动平均修复序列;**Improved**使用改进的分解方法得到的残差项检测数值的异常波动,并使用滑动中值修复序列。

0 commit comments

Comments
 (0)