Dear All,
is there any reason the axis of the chart can't be made formatted as dates/datetimes? (format in the green statement is disregarded)
I expect the bottom panel to have the same axis labels as the top one.
I couldn't correct it even with direct editing with the graph editor, despite this format is present in the dialog boxes for the axis.
See below for the code and screenshot.
Thank you, Sergiy Radyakin.
is there any reason the axis of the chart can't be made formatted as dates/datetimes? (format in the green statement is disregarded)
I expect the bottom panel to have the same axis labels as the top one.
I couldn't correct it even with direct editing with the graph editor, despite this format is present in the dialog boxes for the axis.
See below for the code and screenshot.
Thank you, Sergiy Radyakin.
Code:
version 18.0
clear all
input p
23392
23393
23394
23395
23395
23395
23395
23395
23395
23395
23395
23395
23395
23395
23395
23396
23397
23397
23397
23397
end
format p %td
histogram p, name(g1) d freq scale(0.5)
graph bar , over(p) name(g2) scale(0.5)
graph combine g1 g2, cols(1)
// end of file
Comment