Linking a Person Sample Clauses

Linking a Person. Level File to the Prescribed Medicines File 1. Create data set PERSX by sorting a Full Year Population Characteristics File (file HCXXX), by the person identifier, DUPERSID. Keep only variables to be merged on to the prescribed medicines file and DUPERSID. 2. Create data set PMEDS by sorting the prescribed medicines file by person identifier, DUPERSID. 3. Create final data set NEWPMEDS by merging these two files by DUPERSID, keeping only records on the prescribed medicines 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= HC051A OUT=PMEDS; BY DUPERSID; RUN; DATA NEWPMEDS; MERGE PMEDS (IN=A) PERSX(IN=B); BY DUPERSID; IF A; RUN;
AutoNDA by SimpleDocs
Linking a Person. Level File to the Emergency Room Visit File 1. Create data set PERS by sorting the person-level file, HC003, 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=HC003(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;
Linking a Person. Level File to the Office-Based Medical Provider Visit File 1. Create data set PERS by sorting the person-level file, HC003, by the person identifier, DUPERSID. Keep only variables to be merged on to the office-based medical provider visit file and DUPERSID. 2. Create data set OBMP by sorting the office-based medical provider visit file by person identifier, DUPERSID. 3. Create final date set NEWOBMP by merging these two files by DUPERSID, keeping only records on the office-based medical provider visit file. The following is an example of SAS code which completes these steps: PROC SORT DATA=HC003(KEEP=DUPERSID AGE SEX RACEX) OUT=PERSX; BY DUPERSID; RUN; PROC SORT DATA=OBMP; BY DUPERSID; RUN; DATA NEWOBMP; MERGE OBMP (IN=A) PERSX(IN=B); BY DUPERSID; IF A; RUN;
Linking a Person. Level File to the Office-Based Medical Provider Visit File 1. Create data set PERSX by sorting the Full Year Population Characteristics File (file, HCXXX, by the person identifier, DUPERSID. Keep only variables to be merged on to the office-based medical provider visit file and DUPERSID. 2. Create data set OBMP by sorting the office-based medical provider visit file by person identifier, DUPERSID. 3. Create final date set NEWOBMP by merging these two files by DUPERSID, keeping only records on the office-based medical provider 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=OBMP; BY DUPERSID; RUN; DATA NEWOBMP; MERGE OBMP (IN=A) PERSX(IN=B); BY DUPERSID; IF A; RUN;
Linking a Person. Level File to the Hospital Inpatient Stays File 1. Create data set PERS by sorting the the person-level file, HC003, 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=HC003(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;

Related to Linking a Person

  • Additional Domestic Subsidiaries Promptly (and, in any event, within thirty (30) days, as such time period may be extended by the Administrative Agent in its sole discretion) after the creation or acquisition of any Domestic Subsidiary (other than an Excluded Subsidiary) cause such Domestic Subsidiary to (i) become a Subsidiary Guarantor by delivering to the Administrative Agent a duly executed supplement to the Subsidiary Guaranty Agreement or such other document as the Administrative Agent shall reasonably deem appropriate for such purpose, (ii) grant a security interest in all Collateral (subject to the exceptions specified in the Collateral Agreement) owned by such Subsidiary by delivering to the Administrative Agent a duly executed supplement to each applicable Security Document or such other document as the Administrative Agent shall reasonably deem appropriate for such purpose and comply with the terms of each applicable Security Document, (iii) deliver to the Administrative Agent such opinions, documents and certificates referred to in Section 6.1(b)(ii) through 6.1(b)(iv) and 6.1(c) as may be reasonably requested by the Administrative Agent, (iv) deliver to the Administrative Agent such original certificated Equity Interests or other certificates and stock or other transfer powers evidencing the Equity Interests of such Domestic Subsidiary, (v) deliver to the Administrative Agent such updated Schedules to the Loan Documents as reasonably requested by the Administrative Agent with respect to such Domestic Subsidiary, and (vi) deliver to the Administrative Agent such other documents as may be reasonably requested by the Administrative Agent, all in form, content and scope reasonably satisfactory to the Administrative Agent.

  • Distribution of Offering Material By the Company The Company has not distributed and will not distribute, prior to the later of the Closing Date and the completion of the distribution of the Units, any offering material in connection with the offering and sale of the Units other than the Sale Preliminary Prospectus and the Prospectus, in each case as supplemented and amended.

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