I have a dataset which has GROUP | TIMESTAMP | VALUE.
- GROUP can be 'A' or 'B'
- TIMESTAMP is a timestamp
- VALUE is a number
Note: the groups does not overlap in time. For instance, group 'A' has timestamps from jan18 to jun18, while group 'B' has timestamps from nov19 to dec19.
I want to plot with sgplot these two time series aside, in "the same row", one on the left one on the right. I tried with sgpanel, but since with sgpanel the time axis is in common it spans from jan18 to dic19, so there is a huge hole in the middle. Instead, I just need to have the first graph on the left with the series 'A' centered in jan18-jun18, and a second graph on the right with the series 'B' centered in nov19-dec19 (so larger, since the timespan is smaller), and with the Y axis "the value" in common.
How can I do that?
I hope I made myself clear.
Thanks
Regards
T