フィルターのクリア

Clustering Time Series with DTW multiple column(time series) different lengths

43 ビュー (過去 30 日間)
Amila
Amila 2023 年 3 月 10 日
コメント済み: Amila 2023 年 3 月 20 日
Please kindly hellp me !!!
I have data in a timetable format (TT)
I wanted to use DTW (Dynamic Time Warping) to cluster data into 3 categories without removing NaN raws;
can someone help me, please
please consider the starting points of the numerical data in a column as the start of the time series
n number of time series
all the time series are synchronized into common time in the timetable data(TT).
data collection was not started and ended at the same time so depending on the starting and ending time NaN values are at the beginning and end of the columns

回答 (1 件)

Divyank
Divyank 2023 年 3 月 16 日
Hello @Amila, following steps might help:
Convert your timetable data (TT) to a matrix format using the table2array function.
>> data = table2array(TT);
You can use the 'pdist' function to calculate the pairwise distance between time series using the DTW distance metric. The pdist function can handle missing (NaN) values. The output of the pdist function is a condensed distance matrix.
>> dist = pdist(data(:, 2:end), @(x, y) dtw(x, y));
Then, 'linkage' function can be used to perform hierarchical clustering on the distance matrix.
>> Z = linkage(dist, 'ward');
To assign each time series to a cluster based on the hierarchical clustering result you can use the 'cluster' function. You can specify the number of clusters using the maxclust option.
>> idx = cluster(Z, 'maxclust', 3);
Finally, you can plot the clustering result using the 'gscatter' function.
>> gscatter(data(:,1), data(:,end), idx);
I hope this helps!
  1 件のコメント
Amila
Amila 2023 年 3 月 20 日
Thank you very much for your kid help
Im stugeling with this quite some time now, still due to NaN values this is not working it gives this error
Error in divyank (line 4)
dist=pdist(data(:,2:end),@(x,y) dtw(x,y));
Caused by:
Error using dtw
Expected input number 1, X, to be non-NaN.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by