how to count daily events from a time series data

11 vues (au cours des 30 derniers jours)
BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI le 4 Sep 2019
i have a time series data contains year, month, day, hours, and earthquke . how will i count number of earthquake daily
  2 commentaires
Andrei Bobrov
Andrei Bobrov le 4 Sep 2019
Modifié(e) : Andrei Bobrov le 4 Sep 2019
Attach here small part your data as 'mat' file.
Reformat your data in timetable and use function retime.
BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI le 4 Sep 2019
here i attach format of my data below

Connectez-vous pour commenter.

Réponse acceptée

Akira Agata
Akira Agata le 20 Sep 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');

Plus de réponses (1)

BATAKRUSHNA SENAPATI
BATAKRUSHNA SENAPATI le 20 Sep 2019
here i attach my txt file below

Catégories

En savoir plus sur Seismology dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by