跳到主要內容

IntervalMatch

延伸的 IntervalMatch 前置詞可用來建立一個表格,比對離散數值與一個或多個數值間隔,並選擇性地比對一或數個其他索引鍵的值。

語法:  

IntervalMatch (matchfield)(loadstatement | selectstatement )

IntervalMatch (matchfield,keyfield1 [ , keyfield2, ... keyfield5 ] ) (loadstatement | selectstatement )

 

IntervalMatch 前置詞必須放在載入間隔的 LOADSELECT 陳述式之前。包含離散資料點 (在本例中為時間) 和其他索引鍵的欄位必須先載入到 Qlik Sense 之中含 IntervalMatch 前置詞的陳述式之前。此前置詞不會自行從資料庫表格讀取此欄位。此前置詞會將載入的間隔和索引鍵表格轉換為包含額外一個資料行的表格:離散數值資料點。它也會延伸記錄筆數,讓新的表格在索引鍵欄位的離散資料點、間隔和值三者的各個可能組合中都有一筆記錄。

間隔可能會重疊,所以離散值會連結到所有符合的間隔。

IntervalMatch 前置詞使用索引鍵欄位作為延伸時,它可用於建立一個表格,比對離散數值與一個或多個數值間隔,同時比對一個或數個其他索引鍵的值。

為了避免忽略到未定義的間隔限制,可能必須允許 NULL 值對應到構成間隔上下限的其他欄位。這種情況可由 NullAsValue 陳述式處理,或由任何離散數值資料點前後以數值取代 NULL 的明確測試來處理。

引數:  

引數
引數描述
matchfield 包含離散數值的欄位,這些離散數值將連結至間隔。
keyfield 包含其他屬性的欄位,其他屬性將在轉換中進行比對。
loadstatementorselectstatement必須產生表格,其中第一個欄位包含每一個間隔的下限,第二個欄位包含每一個間隔的上限,在使用索引鍵配對時,第三個和任何後續欄位都包含 IntervalMatch 陳述式中呈現的索引鍵欄位。間隔一定是封閉的,也就是說,結束點是包括在間隔內。非數值的限制會使得間隔被忽略 (未定義)。

範例 1:  

在下方的兩個表格中,第一個表格列出一系列離散事件,第二個表格定義不同順序產生的開始和結束時間。透過 IntervalMatch 前置詞,可以按照邏輯順序連接兩個表格,以找出受干擾影響的順序,以及哪個偏移處理哪些順序。

EventLog: LOAD * Inline [ Time, Event, Comment 00:00, 0, Start of shift 1 01:18, 1, Line stop 02:23, 2, Line restart 50% 04:15, 3, Line speed 100% 08:00, 4, Start of shift 2 11:43, 5, End of production ]; OrderLog: LOAD * INLINE [ Start, End, Order 01:00, 03:35, A 02:30, 07:58, B 03:04, 10:27, C 07:23, 11:43, D ]; //Link the field Time to the time intervals defined by the fields Start and End. Inner Join IntervalMatch ( Time ) LOAD Start, End Resident OrderLog;

 

表格 OrderLog 現在包含其他資料行:Time 還會展開記錄數目。

Table with additional column
Time Start End Order

00:00

- - -
01:18 01:00 03:35 A
02:23 01:00 03:35 A
04:15 02:30 07:58 B
04:15 03:04 10:27 C
08:00 03:04 10:27 C
08:00 07:23 11:43 D
11:43 07:23

11:43

D

範例 2: (使用 keyfield)

與上述範例相同,新增 ProductionLine 作為索引鍵欄位。

EventLog:
LOAD * Inline [
Time, Event, Comment, ProductionLine
00:00, 0, Start of shift 1, P1
01:00, 0, Start of shift 1, P2
01:18, 1, Line stop, P1
02:23, 2, Line restart 50%, P1
04:15, 3, Line speed 100%, P1
08:00, 4, Start of shift 2, P1
09:00, 4, Start of shift 2, P2
11:43, 5, End of production, P1
11:43, 5, End of production, P2
];
 
OrderLog:
LOAD * INLINE [
Start, End, Order, ProductionLine
01:00, 03:35, A, P1
02:30, 07:58, B, P1
03:04, 10:27, C, P1
07:23, 11:43, D, P2
];
 
//Link the field Time to the time intervals defined by the fields Start and End and match the values
// to the key ProductionLine.
Inner Join
IntervalMatch ( Time, ProductionLine )
LOAD Start, End, ProductionLine
Resident OrderLog;

 

現可建立如下的表格方塊:

Tablebox example
ProductionLineTime EventCommentOrderStart End
P1

00:00

0Start of shift 1-- -
P201:000Start of shift 1---
P101:18 1Line stopA01:00 03:35
P102:23 2Line restart 50%A01:00 03:35
P104:15 3Line speed 100%B02:30 07:58
P104:15 3Line speed 100%C03:04 10:27
P108:00 4Start of shift 2C03:04 10:27
P209:00 4Start of shift 2D07:23 11:43
P111:43 5End of production-- -
P211:43 5End of productionD07:23 11:43

此頁面是否對您有幫助?

若您發現此頁面或其內容有任何問題——錯字、遺漏步驟或技術錯誤——請告知我們可以如何改善!