This is an automated email from the ASF dual-hosted git repository. rong pushed a commit to branch fix-site-build in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit f1d5a492fd514f0bdfcbc4545f3947c57256c657 Author: Steve Yurong Su <[email protected]> AuthorDate: Sat Apr 1 22:18:39 2023 +0800 [DOCS] remove invalid <br> tags in Aggregation.md --- docs/UserGuide/Operators-Functions/Aggregation.md | 4 ++-- docs/zh/UserGuide/Operators-Functions/Aggregation.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/UserGuide/Operators-Functions/Aggregation.md b/docs/UserGuide/Operators-Functions/Aggregation.md index 1a73578784..2ca60f6932 100644 --- a/docs/UserGuide/Operators-Functions/Aggregation.md +++ b/docs/UserGuide/Operators-Functions/Aggregation.md @@ -39,9 +39,9 @@ The aggregate functions supported by IoTDB are as follows: | LAST_VALUE | Find the value with the largest timestamp. | All data types | No [...] | MAX_TIME | Find the maximum timestamp. | All data Types | No [...] | MIN_TIME | Find the minimum timestamp. | All data Types | No [...] -| COUNT_IF | Find the number of data points that continuously meet a given condition and the number of data points that meet the condition (represented by keep) meet the specified threshold. | BOOLEAN | `[keep >=/>/=/!=/</<=]threshold`:The specified threshold or threshold condition, it is equivalent to `keep >= threshold` if `threshold` is used alone, t [...] +| COUNT_IF | Find the number of data points that continuously meet a given condition and the number of data points that meet the condition (represented by keep) meet the specified threshold. | BOOLEAN | `[keep >=/>/=/!=/</<=]threshold`:The specified threshold or threshold condition, it is equivalent to `keep >= threshold` if `threshold` is used alone, t [...] | TIME_DURATION | Find the difference between the timestamp of the largest non-null value and the timestamp of the smallest non-null value in a column | All data Types | No [...] -| MODE | Find the mode. Note: </br>1.Having too many different values in the input series risks a memory exception; </br>2.If all the elements have the same number of occurrences, that is no Mode, return the value with earliest time; </br>3.If there are many Modes, return the Mode with earliest time. | All data Types | No [...] +| MODE | Find the mode. Note: <br>1. Having too many different values in the input series risks a memory exception; <br>2. If all the elements have the same number of occurrences, that is no Mode, return the value with earliest time; <br> 3.If there are many Modes, return the Mode with earliest time. | All data Types | No [...] ## COUNT ### example diff --git a/docs/zh/UserGuide/Operators-Functions/Aggregation.md b/docs/zh/UserGuide/Operators-Functions/Aggregation.md index 87177d6145..7e8336add9 100644 --- a/docs/zh/UserGuide/Operators-Functions/Aggregation.md +++ b/docs/zh/UserGuide/Operators-Functions/Aggregation.md @@ -39,9 +39,9 @@ IoTDB 支持的聚合函数如下: | LAST_VALUE | 求时间戳最大的值。 | 所有类型 | 无 | 与输入类型一致 | | MAX_TIME | 求最大时间戳。 | 所有类型 | 无 | Timestamp | | MIN_TIME | 求最小时间戳。 | 所有类型 | 无 | Timestamp | -| COUNT_IF | 求数据点连续满足某一给定条件,且满足条件的数据点个数(用keep表示)满足指定阈值的次数。 | BOOLEAN | `[keep >=/>/=/!=/</<=]threshold`:被指定的阈值或阈值条件,若只使用`threshold`则等价于`keep >= threshold`,`threshold`类型为`INT64`<br/> `ignoreNull`:可选,默认为`true`;为`true`表示忽略null值,即如果中间出现null值,直接忽略,不会打断连续性;为`false`表示不忽略null值,即如果中间出现null值,会打断连续性 | INT64 | +| COUNT_IF | 求数据点连续满足某一给定条件,且满足条件的数据点个数(用keep表示)满足指定阈值的次数。 | BOOLEAN | `[keep >=/>/=/!=/</<=]threshold`:被指定的阈值或阈值条件,若只使用`threshold`则等价于`keep >= threshold`,`threshold`类型为`INT64` <br> `ignoreNull`:可选,默认为`true`;为`true`表示忽略null值,即如果中间出现null值,直接忽略,不会打断连续性;为`false`表示不忽略null值,即如果中间出现null值,会打断连续性 | INT64 | | TIME_DURATION | 求某一列最大一个不为NULL的值所在时间戳与最小一个不为NULL的值所在时间戳的时间戳差 | 所有类型 | 无 | INT64 | -| MODE | 求众数。注意:</br>1.输入序列的不同值个数过多时会有内存异常风险; </br>2.如果所有元素出现的频次相同,即没有众数,则返回对应时间戳最小的值; </br>3.如果有多个众数,则返回对应时间戳最小的众数。 | 所有类型 | 无 | INT64 | +| MODE | 求众数。注意:<br>1. 输入序列的不同值个数过多时会有内存异常风险; <br>2. 如果所有元素出现的频次相同,即没有众数,则返回对应时间戳最小的值; <br> 3.如果有多个众数,则返回对应时间戳最小的众数。 | 所有类型 | 无 | INT64 | ### COUNT_IF #### 语法
