Dear all,
I've got two example dataset where time-units are decoded as YYYY-MM-DD.
I am just puzzled that in case the time-variables is named "z"
everything works fine (see data1.csv).
However, once the column name is "DATE" (see data2.csv), I obtain the
following error as variable "DATE" is no part of the dataset -- at least
it doesn't appear in main window.
I am using the current git-version on linux.
<error>
first row label "2019-02-04", last label "2019-02-05"
trying to parse row labels as dates...
Trying date order YYYYMMDD
Could be 2019-02-04 - 2019-02-05
Listing 3 variables:
0) const 1) unit 2) Y
? setobs unit DATE --panel-vars
Data error
Error executing script: halting
setobs unit DATE --panel-vars
</error>
<hansl>
clear
# works
open data1.csv # please adjust path
setobs unit z --panel-vars
# Doesn't work when time-variable is named "DATE"
open data2.csv # please adjust path
setobs unit DATE --panel-vars
</hansl>
Best,
Artur