Hello,
I have the following data below:
When I use the -rangejoin- command, I get the following error "was expecting a numeric variable, a number, or a system missing value for the interval low: start"
I would appreciate any assistance with this.
Best,
Anoush K.
I have the following data below:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input long ID double(start end) 1 233 247 2 234 251 3 235 236 end format %tq start format %tq end tempfile file1 save `file1' drop _all
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input long ID double(time) 1 239 2 242 3 236 end format %tq time
Code:
rangejoin time start end using `file1', by(ID)
Best,
Anoush K.
Comment