Borrar filtros
Borrar filtros

Histogram plot by equal time intervals

5 visualizaciones (últimos 30 días)
Greek McCoy
Greek McCoy el 5 de Abr. de 2022
Comentada: Voss el 5 de Abr. de 2022
Dear all,
I have with my the attached dataset that I will like to plot in an equal interval time histogram.
Below here is my code:
clc
A = load ('TutorialSampleT.txt');
Time = A (:,1) ;
x = A (:,2 ) ;
y = A (:,3 ) ;
z = A (:,4 ) ;
Amplitude = A (:,5) ;
%define no of bins
noOfBins=min(Time):0.90:max(Time);
%plot histogram
histogram(Time,numel(noOfBins));
timeFormat=noOfBins;
timeFormat=timeFormat/24;
la=datestr(timeFormat,'HH:MM')
xticks(noOfBins);
xticklabels({la});
And the results:
I will be very happy if I can get some assistance with changing the time intervals to something more unifrom (an hour or 2 interval time will be perfect).
Thank you.

Respuesta aceptada

Voss
Voss el 5 de Abr. de 2022
clc
A = load ('TutorialSampleT.txt');
Time = A (:,1) ;
x = A (:,2 ) ;
y = A (:,3 ) ;
z = A (:,4 ) ;
Amplitude = A (:,5) ;
% interval in hours:
% interval = 0.9;
% interval = 1;
interval = 2;
%define no of bins
noOfBins=min(Time):interval:max(Time);
%plot histogram
% histogram(Time,numel(noOfBins));
histogram(Time,numel(noOfBins)-1); % number of bins in the histogram is one less than numel(noOfBins), i.e., noOfBins defines the bin edges
timeFormat=noOfBins;
timeFormat=timeFormat/24;
la=datestr(timeFormat,'HH:MM');
xticks(noOfBins);
xticklabels({la});
  2 comentarios
Greek McCoy
Greek McCoy el 5 de Abr. de 2022
Hello,
Thank you very much for your answer.
It works perfectly well for me.
--
Sincerely,
Greek
Voss
Voss el 5 de Abr. de 2022
You're welcome!

Iniciar sesión para comentar.

Más respuestas (1)

Steven Lord
Steven Lord el 5 de Abr. de 2022
Rather than specifying the number of bins you could specify the bin edges explicitly.
minutesPerDay = minutes(days(1));
T = datetime('today');
dt = T + minutes(randi(minutesPerDay, 1, 1000));
edges = T + hours(0:2:24);
histogram(dt, edges)
xticks(edges)
  1 comentario
Greek McCoy
Greek McCoy el 5 de Abr. de 2022
Hello,
Thank you very much for your response.
Your answer is very valuable to me and works well with my code.
I am definitely going to incorporate it in my code.
--
Sincerely,
Greek

Iniciar sesión para comentar.

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by