how to count daily events from a time series data

7 visualizzazioni (ultimi 30 giorni)
i have a time series data contains year, month, day, hours, and earthquke . how will i count number of earthquake daily
  2 Commenti
Andrei Bobrov
Andrei Bobrov il 4 Set 2019
Modificato: Andrei Bobrov il 4 Set 2019
Attach here small part your data as 'mat' file.
Reformat your data in timetable and use function retime.

Accedi per commentare.

Risposta accettata

Akira Agata
Akira Agata il 20 Set 2019
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');

Più risposte (1)

BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI il 20 Set 2019
here i attach my txt file below

Community Treasure Hunt

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

Start Hunting!

Translated by