how to count daily events from a time series data

7 ビュー (過去 30 日間)
BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI 2019 年 9 月 4 日
回答済み: Akira Agata 2019 年 9 月 20 日
i have a time series data contains year, month, day, hours, and earthquke . how will i count number of earthquake daily
  2 件のコメント
Andrei Bobrov
Andrei Bobrov 2019 年 9 月 4 日
編集済み: Andrei Bobrov 2019 年 9 月 4 日
Attach here small part your data as 'mat' file.
Reformat your data in timetable and use function retime.
BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI 2019 年 9 月 4 日
here i attach format of my data below

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

採用された回答

Akira Agata
Akira Agata 2019 年 9 月 20 日
How about the following?
% Read your text data file
T = readtable('test.txt');
% Create datetime vector
Time = datetime(T.year,T.month,T.day,T.hrs,T.mins,T.sec);
% Calculate daily counts
TT = timetable(Time,ones(size(Time)),'VariableNames',{'Count'});
TT = retime(TT,'daily','sum');

その他の回答 (1 件)

BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI 2019 年 9 月 20 日
here i attach my txt file below

カテゴリ

Help Center および File ExchangeSeismology についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by