Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • tsfill - is there a way to register the rows that are filled in?

    Hi everybody

    Is there a way to register those rows that are being filled in with tsfill? I am using - tsfill, full - to fill in some values in a dataset but I would like to see the rows that are generated from this command.

    Best
    Gustav

  • #2
    Untested, but I think it might be more straightforward to mark observations that are already present, then go from there. Something like this perhaps:

    Code:
    gen marked = 1
    tsfill, full
    replace marked = missing(marked)

    Comment


    • #3
      Ahh of course. Thanks Daniel.

      Comment

      Working...
      X