Hi,
I've just stumbled about the --panel-time option for setobs. One of the
things that always annoyed me was the lack of this feature. I am really
happy its available now!
However, the following doesn't work for me using latest git on ubuntu:
<hansl>
set verbose off
clear
N = 2 # cross-sectional dim.
T = 14 # time dim.
scalar NT = N*T
nulldata NT --preserve
setobs T 1:1 --stacked-time-series
#setobs 7 2019-02-26 --panel-time
setobs 4 1990:1 --panel-time
series x = normal()
series y = normal()
print y x -o
</hansl>
However, the printout of the dataset does not comprise any information
on dates and frequencies:
<output>
y x
1:01 -1.018049 3.117621
1:02 -1.139177 -1.372563
1:03 0.304792 1.633629
1:04 -0.837392 0.612071
1:05 -1.555112 -1.502532
1:06 0.165970 0.160983
1:07 1.287358 2.031679
.
.
.
.
</output>
Best,
Artur