Merging a Person Sample Clauses

Merging a Person. Level File to the Hospital Inpatient Stays File 1. Create data set PERS by sorting the MEPS 1998 Full Year Population Characteristics File, by the person identifier, DUPERSID. Keep only variables to be merged on to the hospital inpatient stays file and DUPERSID. 2. Create data set STAZ by sorting the hospital inpatient stays file by person identifier, DUPERSID. 3. Create final data set NEWSTAZ by merging these two files by DUPERSID, keeping only records on the hospital inpatient stays file. The following is an example of SAS code which completes these steps: PROC SORT DATA=HCXXX(KEEP=DUPERSID AGE SEX EDUC) OUT=PERSX; BY DUPERSID; RUN; PROC SORT DATA=STAYS; BY DUPERSID; RUN; DATA NEWSTAYS; MERGE STAYS (IN=A) PERSX(IN=B); BY DUPERSID; IF A; RUN;
AutoNDA by SimpleDocs
Merging a Person. Level File to the Emergency Room Visit File 1) Create data set PERS by sorting the MEPS 1999 Full Year Population Characteristics File, by the person identifier, DUPERSID. Keep only variables to be merged on to the emergency room visit file and DUPERSID. 2) Create data set EROM by sorting the emergency room visit file by person identifier, DUPERSID. 3) Create final data set NEWEROM by merging these two files by XXXXXXXX, keeping only records on the emergency room visit file. The following is an example of SAS code which completes these steps: PROC SORT DATA=1999 Full Year Population Characteristics File (KEEP=DUPERSID AGE SEX RACEX) OUT=PERSX; BY DUPERSID; RUN; PROC SORT DATA=EROM; BY DUPERSID; RUN; DATA NEWEROM; MERGE EROM (IN=A) PERSX(IN=B); BY DUPERSID; IF A; RUN;
Merging a Person. Level File to the Emergency Room Visit File 1. Create data set PERS by sorting the MEPS 1997 Full Year Population Characteristics File, by the person identifier, DUPERSID. Keep only variables to be merged on to the emergency room visit file and DUPERSID. 2. Create data set EROM by sorting the emergency room visit file by person identifier, DUPERSID. 3. Create final data set NEWEROM by merging these two files by DUPERSID, keeping only records on the emergency room visit file. The following is an example of SAS code which completes these steps: PROC SORT DATA=HCXXX(KEEP=DUPERSID AGE SEX RACEX) OUT=PERSX; BY DUPERSID; RUN; PROC SORT DATA=EROM; BY DUPERSID; RUN; DATA NEWEROM; MERGE EROM (IN=A) PERSX(IN=B); BY DUPERSID; IF A; RUN;

Related to Merging a Person

  • Interested Persons It is understood that Trustees, officers, and shareholders of the Trust are or may be or become interested in the Advisor or the Sub-Advisor as directors, officers or otherwise and that directors, officers and stockholders of the Advisor or the Sub-Advisor are or may be or become similarly interested in the Trust, and that the Advisor or the Sub-Advisor may be or become interested in the Trust as a shareholder or otherwise.

Draft better contracts in just 5 minutes Get the weekly Law Insider newsletter packed with expert videos, webinars, ebooks, and more!