You are not logged in. You can browse but not post. Login or Register by clicking 'Login or Register' at the top-right of this page. For more information on Statalist, see the FAQ.
A quick calculation shows the number of distinct dates to be
Code:
. di mdy(12,30,2023) - mdy(7,1,1997) + 1
9679
That many columns in a table would be impractical so far as I can see, and I can't see that that many rows, although more manageable, is even close to practical.
Code:
help limits
in your Stata shows some limits for particular commands.
Thanks Nick, I need the "date" variable in one column that has "start date" and "end date" in continuity with no missing date in between the dates. I need to merge this dataset with to other dataset that contains non-continuous "date_id".
Comment