--- title: Change Point Detection type: templates category: Time Series Analysis cat: time-series-analysis order: 620 meta_title: Change Point Detection Data Labeling Template meta_description: Template for labeling change point detection in time series data with Label Studio for your machine learning and data science projects. --- If you need to find sudden changes in time series data, use this template to perform change point detection. Label the change on relevant time series channels. ## Interactive Template Preview
## Labeling Configuration ```html ``` ## About the labeling configuration All labeling configurations must be wrapped in [View](/tags/view.html) tags. Use the [TimeSeriesLabels](/tags/timeserieslabels.html) control tag to allow annotators to label the region indicating change on the time series graph: ```xml ``` Use the [TimeSeries](/tags/timeseries.html) object tag to specify the time series data source. The `valueType="url"` parameter specifies that the time series data is available as a URL, rather than a file, and the `value="$csv"` parameter specifies that the URL is stored in a data key called `csv`. The `sep=","` parameter specifies that a comma is the data separator, as is standard for a CSV-formatted file. The time parameters specify which column contains the time data, the format of the time data in the file, and how to display the time data on the labeling interface. ```xml ``` The `overviewChannels` parameter in the [TimeSeries](/tags/timeseries.html) tag specifies the column in the time series data to display on the time series graph as a channel. You can then use the Channel tag and its parameters to provide details about the data, such as the units of the data, the `displayFormat` of the channel data using d3 format, the `strokeColor` to use when highlighting the channel, and the name of the channel as it should appear in the labeling interface legend. ## Related tags - [TimeSeriesLabels](/tags/timeserieslabels.html) - [TimeSeries](/tags/timeseries.html) - [Channel](/tags/timeseries.html)