Organize Excel date and time data

16 Ansichten (letzte 30 Tage)
Lauren Kilgore
Lauren Kilgore am 22 Nov. 2019
Kommentiert: Guillaume am 22 Nov. 2019
I am trying to sort this data by date and time. In the file attached, you can see that the time and date are in the same cell. I have tried sort without any luck. I am wondering if it is possible to display a graph for each date and then plotting the times for that date.
  3 Kommentare
Lauren Kilgore
Lauren Kilgore am 22 Nov. 2019
Bearbeitet: Lauren Kilgore am 22 Nov. 2019
I attached an updated excel file. I would like to organize the data by the date/time and the reader. From there, I would like to plot a line graph to show the trend of students visiting the tutoring center by each room.
Guillaume
Guillaume am 22 Nov. 2019
I'm unclear on what would go on the X and Y axis of your line graph.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Guillaume
Guillaume am 22 Nov. 2019
It's trivial to sort if you read the data in a table or a timetable:
data = readtable('Practice.xlsx', 'ReadVariableNames', false);
sorteddata = sortrows(data, 1); %sort rows according to first column
or
data = readtimetable('Pracice.xlsx', 'ReadVariableNames', false);
sorteddata = sortrows(data, 'Time') %sort rows according to time
However, for plotting per day you don't even need to sort the function, you can use groupsummary with a grouping by day to call your plotting function with the data of each day. With you demo excel file, it's unclear what you want to plot since the 2nd column is made of names. But it'd go something like this
%demo with timetable
data = readtimetable('Practice.xlsx', 'ReadVariableNames', false);
%for this demo adding a numerical column with random numbers for plotting. Now idea what you want to plot
data.Numbers = rand(height(data), 1)
%plotting
figure; hold('on')
gplot = groupsummary(data, 'Time', 'day', @plot, 'Numbers');
legend(gplot.day_Time);

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by