Bin
2025-12-17 dcf780a91c16b6be28635b6e2e0e702060ee19f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
title: Outliers & Anomaly Detection
type: community
group: Time Series Analysis
image: /static/templates/outliers-anomaly-detection.png
details: |
  <h1>Select time spans identifying outliers or anomalies on time series signals</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>fraud detection, cybersecurity, network monitoring, industrial IoT, predictive maintenance, financial trading, healthcare monitoring, quality control, equipment failure prediction, supply chain monitoring, energy grid monitoring, sensor fault detection, system health monitoring</dd>
    <dt>Associated Models</dt>
    <dd>isolation forest, one-class SVM, LSTM autoencoders, statistical process control</dd>
    <dt>Domain Terminology</dt>
    <dd>CSV, Excel, XLS, Sheet, statistical outliers, point anomalies, contextual anomalies, collective anomalies, drift detection</dd>
  </dl>
config: |
  <View>
      <!-- Object tag for time series data source -->
      <TimeSeries name="ts" valueType="url" value="$csv"
                  sep=","
                  timeColumn="time"
                  timeFormat="%Y-%m-%d %H:%M:%S.%f"
                  timeDisplayFormat="%Y-%m-%d"
                  overviewChannels="velocity">
 
          <Channel column="velocity"
                   units="miles/h"
                   displayFormat=",.1f"
                   strokeColor="#1f77b4"
                   legend="Velocity"/>
      </TimeSeries>
 
      <!-- Control tag for region labels -->
      <TimeSeriesLabels name="label" toName="ts">
          <Label value="Region" background="red" />
      </TimeSeriesLabels>
 
      <Choices name="region_type" toName="ts"
            perRegion="true" required="true">
          <Choice value="Outlier"/>
          <Choice value="Anomaly"/>
      </Choices>
  </View>