Bin
2025-12-17 d616898802dfe7e5dd648bcf53c6d1f86b6d3642
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
title: Change Point Detection
type: community
group: Time Series Analysis
image: /static/templates/change-point-detection.png
details: |
  <h1>Identify changing points on time series signals</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>financial market analysis, climate data analysis, medical signal analysis, manufacturing process control, energy consumption monitoring, network traffic analysis, supply chain optimization, economic forecasting, epidemiological studies, quality assurance, system performance monitoring, behavioral analysis</dd>
    <dt>Associated Models</dt>
    <dd>PELT, CUSUM, Bayesian change point detection, segmentation algorithms</dd>
    <dt>Domain Terminology</dt>
    <dd>CSV, Excel, XLS, Sheet, structural breaks, regime change, trend analysis, segmentation, temporal boundaries</dd>
  </dl>
config: |
  <View>
      <!-- Control tag for region labels -->
      <TimeSeriesLabels name="label" toName="ts">
          <Label value="Change" background="red" />
      </TimeSeriesLabels>
 
      <!-- 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>
  </View>