How to remove period stamp in datetime plot ?
42 次查看(过去 30 天)
显示 更早的评论
How do I remove the period stamp when a datetime vector is plotted ?
Example code:
close all
t=datetime('now'):hours(1):(datetime('now')+days(7));
P=1:(size(t,2));
plot(t,P)
xtickformat('eee HH:mm' )
ax = gca;
ax.XTick = t(1):days(1):t(end);
Plot with period shown in lower right corner, indicated by the red arrow.
0 个评论
采纳的回答
vik
2019-1-19
You can manually replace the strings used on the ticks after setting the XTick property:
close all
t=datetime('now'):hours(1):(datetime('now')+days(7));
P=1:(size(t,2));
plot(t,P)
% xtickformat('eee HH:mm' )
ax = gca;
ax.XTick = t(1):days(1):t(end);
ax.XTickLabelMode = 'manual';
ax.XTickLabel = datestr(ax.XTick,'ddd HH:mm'); % see datestr formatOut
2 个评论
Manuel S Mathew
2021-5-7
编辑:Manuel S Mathew
2021-5-7
Hi,
Thanks for this solution. I tried the code and it works in removing the period stamp but now my x axis is offset by one minute as below:
My code is:
t = datetime(2017,1,1,0,0,0, "Format","dd-MMM-uuuu HH:mm"):hours(1):datetime(2017,1,1,23,0,0, "Format","dd-MMM-uuuu HH:mm");
plot(t,Data.Jan,'b')
grid;
title('January');
set(gca,'FontSize',18)
set(gca,'FontName','Times New Roman')
ax1 = gca;
ax1.XTick = t(1):hours(6):datetime(2017,1,1,23,0,0, t(end);
ax1.XTickLabelMode = 'manual';
ax1.XTickLabel = datestr(ax1.XTick,'HH:mm'); % see datestr formatOut
ylim([0 1000]);
Could you please help me?
dpb
2021-5-7
>> ax1.XTick = t(1):hours(6):datetime(2017,1,1,23,0,0, t(end);
ax1.XTick = t(1):hours(6):datetime(2017,1,1,23,0,0, t(end);
↑
Error: Invalid expression. When calling a function or indexing a variable,
use parentheses. Otherwise, check for mismatched delimiters.
Your code posted has syntax errors and so can't be what caused/generated the plot shown.
But, if I just plot something using the above-generated time vector and the solution I posted/suggested below, I get the expected hour strings from 0:00 to 0:00 at 6 hour intervals precisely.
plot(t,Data.Jan,'b')
hAx=gca;
hAx.XTickLabel=hAx.XTickLabel;
will solve the problem methinks.
If not, we'll have to see the exact, running code that cause the problem, but the above won't run with the syntax error so it can't be what you actually did/have.
更多回答(2 个)
dpb
2019-1-19
编辑:dpb
2019-1-19
This was a side subject of a thread some time back with the need to combine durations with times at which the event durations occurred to build a 2D representation of events in time over a period of some years...I went off and looked for it but never could find it to refer to and didn't remember the "how" solved the issue.
Messing with the properties of the DateTimeRuler and even looking at undocumented/hidden properties, there appears that TMW left no way for the user to modify this as there (sorta') is with the Exponent property for the NumericRuler; there's no equivalent and while the property is in the object it has no effect on datetime axes...so, I didn't have any real Answer to give...
But, it just came to me that if one manually wrote the tick labels, perhaps the internal logic would be overwritten and, as the above shows, it's so...
There's a little more direct way to achieve the result, however, if one is satisfied with the ticks as is...
hAx=gca; % get the axes handle
hAx.XTickLabel=hAx.XTickLabel; % overwrite the existing tick labels with present values
has the effect of "turning off" the common string the inbuilt logic uses.
One could, it seems, build this into a callback function for cases where one changes limits or the like.
Why TMW seems to think "Mama knows best!" on these niceties that nobody would ever think their chosen default display formats aren't always going to be that wanted is frustrating to have to find these workarounds. While they're kinda' entertaining exercises for Answers, it's a real productivity-killer for the actual end-user.
0 个评论
Abby Skofield
2023-9-20
编辑:Adam Danz
2023-10-18
Starting in R2023b, you can use the xsecondarylabel function to toggle the visiblity of the secondary label off.
t=datetime('now'):hours(1):(datetime('now')+days(7));
P=1:(size(t,2));
ax = axes;
plot(t,P)
xtickformat('eee HH:mm' )
ax.XTick = t(1):days(1):t(end);
xsecondarylabel('Visible','off')
You can also use these new functions to add custom secondary labels:
ysecondarylabel('USD, millions')
For more info and demos on this topic, see the Graphics and App Building blog article below
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!