Announcement

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

  • Testing Use of Code


    Code:
    clear
    set obs 10
    gen id = _n
    tempfile touse
    save `touse', replace
    drop in 1
    merge 1:1 id using `touse', assert(match master) keep(match)
    The
    Code:
    drop in 1
    on the second to last line means that the using dataset has one more observation than the master dataset.

    I am testing the
    Code:
    merge
    command.
Working...
X