Created
September 18, 2014 05:54
-
-
Save PMeinshausen/c22f77a7f554ad737ad9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Syntax (version 1.0) | |
SELECT * FROM DTW( | |
ON input_timeseries_table | |
PARTITION BY partition_columns | |
ORDER BY ordering_columns | |
ON template_timiseries_table AS template_table | |
DIMENSION | |
ORDER BY ordering_columns | |
ON mapping_table AS mapping_table | |
PARTITION BY partition_columns | |
INPUT_TABLE_VALUE_COLUMN_NAMES('value_column','timestamp_column') | |
TEMPLATE_TABLE_VALUE_COLUMN_NAMES('value_column','timestamp_column') | |
TIMESERIESID('timeseriesid_columns') | |
TEMPLATEID('templateid_columns') | |
[RADIUS('Integer')] | |
[METRIC('distance_metric')] | |
[WARPPATH('true'|'false')] | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment