Mutiple Time series synchronization

조회 수: 3 (최근 30일)
Life is Wonderful
Life is Wonderful 2019년 8월 14일
댓글: Life is Wonderful 2019년 8월 25일
Hi
I want to synchronize multiple time series
Can any suggest how to do it.
Thanks
  댓글 수: 9
Life is Wonderful
Life is Wonderful 2019년 8월 15일
My goal is to get a common time series with text data. If for a time instance data is present then choose else skip particular data.look for other data if present on time then put that data.Like this I want to have a common time series for from different readtable.
Guillaume
Guillaume 2019년 8월 15일
My goal is to get a common time series with text data
If it's textual data, I have no idea why you were asking about extrapolation. How do you extrapolate text?
Anyway, to synchronize several timetables you'd simply do it in a loop. I can show you how it's done once I understand what the inputs are. So far, you seem to have shown date variables, a timeseries or timetable needs date and data to be useful.
I'm not even sure what kind of data you have, so please state whether it's timeseries, timetable, table or something else.

댓글을 달려면 로그인하십시오.

채택된 답변

Guillaume
Guillaume 2019년 8월 16일
I think this does what you want:
contentfields = fieldnames(Content);
for fieldidx = 1:numel(contentfields) %iterate over each field of Content
structtable = struct2cell(Content.(contentfields{fieldidx})); %extract the structure within the field by converting it to cell array (avoids having to work out what its name is)
structtimetable = table2timetable(structtable{1}(:, {'Date', 'Message'})); %convert to timetable, only keeping Date and Message
structtimetable.Properties.VariableNames{1} = sprintf('Message_%s', contentfields{fieldidx}); %rename Message variable so we know where it came from
structtimetable = rmmissing(structtimetable); %remove invalid rows to avoid problems with synchronize
if fieldidx == 1
joinedtimetable = structtimetable; %1st time, create output
else
joinedtimetable = synchronize(joinedtimetable, structtimetable, 'union'); %subsequent times, synchronize. Choose whichever method is prefered
end
end
The main issue is that some (all?) of your tables contain rows with NaT which cause problem with synchronisation. You may want to investigate that. I've removed these rows here.
  댓글 수: 11
Guillaume
Guillaume 2019년 8월 22일
Nowhere probably. If it's not visible, it's most likely because the default duration format doesn't display it. You can easily change the Format of the variable to whatever you want:
joinedtimetable.RowTimes.Format = 'hh:mm:ss.SSS';
Life is Wonderful
Life is Wonderful 2019년 8월 25일
Sure! Thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by