필터 지우기
필터 지우기

How to remove the year from a datetime table column

조회 수: 36 (최근 30일)
Paul Barrette
Paul Barrette 2023년 9월 17일
댓글: Star Strider 2023년 9월 20일
I have a datetime table with
'01-Oct-2014'
'02-Oct-2014'
'03-Oct-2014'
'04-Oct-2014'
'05-Oct-2014'
and I would like to get the same table (or an additional column in that table) but with day-month only for each row
  댓글 수: 7
Paul Barrette
Paul Barrette 2023년 9월 18일
이동: Dyuman Joshi 2023년 9월 20일
Sorry, I should have provided more info. I am plotting (with the 'scatter' command) five traces on the same graph, one per year (e.g., 2014 to 2018 inclusive). The horizontal axis for each year ranges from 01-Oct to 01-June (values for the vertical axis are from another matrix). But because the year is part of the object, these traces plot one after the other along that axis, not one on top of each other, which is what I'm looking for. To answer your question, I would store them as 'day-month' if only I could extract this from the current 'day-month-year' data.
ymd, as suggested earlier by @Star Strider, turns the datetime values into numeric arrays, but I'd like the 'day-month' label to appear on the horizontal axis of the graph.
Dyuman Joshi
Dyuman Joshi 2023년 9월 18일
이동: Dyuman Joshi 2023년 9월 20일
How about this?
%Data
y = datetime(["01-Oct-2014";
"02-Oct-2014"
"03-Oct-2014"
"04-Oct-2014"
"05-Oct-2014"])
y = 5×1 datetime array
01-Oct-2014 02-Oct-2014 03-Oct-2014 04-Oct-2014 05-Oct-2014
%Get the day
d = day(y)
d = 5×1
1 2 3 4 5
%Get the month, with the name in short form
m = month(y,'shortname')
m = 5×1 cell array
{'Oct'} {'Oct'} {'Oct'} {'Oct'} {'Oct'}
%Single Quotation marks gives cell array
%Double Quotation marks gives string array
z = compose("%d-%s", d, string(m))
z = 5×1 string array
"1-Oct" "2-Oct" "3-Oct" "4-Oct" "5-Oct"

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2023년 9월 18일
편집: Star Strider 2023년 9월 18일
The ymd function may be worth exploring.
EDIT — (18 Sep 2023 at 23:08)
Here is an example that also includes a scatter plot —
DT = datetime(['01-Oct-2014'
'02-Oct-2014'
'03-Oct-2014'
'04-Oct-2014'
'05-Oct-2018'
'01-Oct-2018'
'02-Oct-2018'
'03-Oct-2018'
'04-Oct-2018'
'05-Oct-2018']);
T1 = table(DT,randn(size(DT))+[zeros(5,1);4*ones(5,1)])
T1 = 10×2 table
DT Var2 ___________ _________ 01-Oct-2014 -0.082131 02-Oct-2014 0.47899 03-Oct-2014 0.25127 04-Oct-2014 0.99845 05-Oct-2018 0.39241 01-Oct-2018 4.2423 02-Oct-2018 5.3109 03-Oct-2018 4.1244 04-Oct-2018 3.8779 05-Oct-2018 4.609
[y,m,d] = ymd(DT); % Date Components
ix = findgroups(m, d); % Indices Of Months & Days
scattery = accumarray(ix, T1{:,2}, [], @(x){x}); % Accumulate 'Var2' Values By Day & Month
mc = month(DT,'shortname');
% compose('%s-%02d',string(mc),day(DT))
x = unique(compose('%s-%02d',string(mc),day(DT)),'stable');
dtx = datetime(x,'InputFormat','MMM-dd');
y = cell2mat(scattery.'); % Convert Cell Array To Numeric Array & Transpose
figure
scatter(dtx, y(1,:), 's', 'filled', 'DisplayName','2014')
hold on
scatter(dtx, y(2,:), 's', 'filled', 'DisplayName','2018')
hold off
grid
legend('Location','best')
I am not certain what you want to do.
.
  댓글 수: 2
Paul Barrette
Paul Barrette 2023년 9월 20일
This works - thanks @Star Strider. Though this is intricate coding for me (an opportunity the learn!). I did try the solution offered by @Dyuman Joshi, much simpler, but I could not make it work.
Star Strider
Star Strider 2023년 9월 20일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time Series Events에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by