Concept: Home Care Episodes of Care: Methods for Creating Home Care Episodes

Concept Description

Last Updated: 2014-05-21

Introduction

Definitions

Home Care Data

1. Home Care Utilization / Manitoba Support Services Payroll (MSSP) Database

SAS Code (Macro) for Home Care Episodes from the MSSP Data

    Use the MCHP SAS macro get_mssp_homecare to create home care episodes from the Home Care MSSP data. This macro will generate episodes of care across all time in the MSSP data based on the defined acquire date. An example call of the macro is:
    get_mssp_homecare(acqdt_year=2011)
    An example of the get_mssp_homecare macro code is available from the SAS code and formats section below (internal access only). More detailed documentation is available at the top of the macro program code. A current version of the macro code can be found in the MCHP system macro library.

2. Home Care Minimum Data Set (MDS) Assessment Database

SAS Code (Macro) for Home Care Episodes from the MDS Data

    Use the MCHP SAS macro get_mds_homecare to create home care episodes from the Home Care MDS Assessment data. This macro will generate episodes of care containing the start and end of MDS Home Care episodes. An example call of the macro is:
    get_mds_homecare(acqdt_year=2011)
    An example of the get_mds_homecare macro code is available from the SAS code and formats section below (internal access only). More detailed documentation is available at the top of the macro program code. A current version of the macro code can be found in the MCHP system macro library.

    For more information on the get_mds_homecare SAS macro, please read the Data Analyst Meeting Summary Notes for November 27, 2013 (available internally only).

Comparative Use of the Home Care Datasets (MSSP vs MDS-HC)

Method to Define a Home Care Episode of Care

1. Roos et al. (2001)

2. Doupe et al. (2011)

MAIN Rules

    Case activity record(s) were considered to be one unique home care episode if:

    • it is a new client (OPEN REASON = "0"), or a re-opened case (OPEN REASON = "1");
    • it is the first or only record of PHIN; and
    • it is a transfer > 30 days after previous case was closed (OPEN REASON = "2"; GAP >= 30 days)
      * The gap is the time between closed date on previous record and open date on current record.
    A record is a continuation of previous episode if it is not the first record and the OPEN REASON = "2" (transfer).

    NOTE: These rules are very specific to the research by Doupe et al. (2011) and may not be suitable for other MCHP population-based research.

Other Rules

    Other rules (old and suggested new) have been described within Natalia's presentation to provide instruction on the management of multiple home care records when creating home care episodes from case activity files. The new rules have been created because new data is available since the last published research and when the "old" rules are applied to new data, there are much broader implications in terms of how many people are being affected by each rule (personal communication, Natalia Dik, September 14, 2012). The suggested new rules have yet to be approved by researcher(s) and other analysts (personal communication, Natalia Dik, September 14, 2012). Table 1.0 provides a brief look at the old and new rules.

Table 1: Old and New Rules for the Creation of Home Care Episodes using Case Activity Files

    OLD Rules
    Suggested NEW Rules
    (4) - Record not closed (#1) and followed by another record (#2):
    1. If record #2 is transfer - remove #2; keep person
    2. If record #2 is new or re-open - delete these people completely
    (4) - Record not closed (#1) and followed by another record (#2):
    1. If record #2 is transfer - remove #2; keep person
    2. If record #2 is new or re-open - flag these people and their records as problematic
    (5) Overlap (record #2 starts before record # 1 is closed):
    1. If record #2 is transfer - count as one episode
    2. If record #2 is re-open and difference is </= 30 days, then change open date of record #2 to day of record #1 closure
    (5) Overlap (record #2 starts before record #1 is closed):
    1. If record #2 is transfer - count as one episode
    2. If record #2 is re-open and difference is </= 30 days, then change close date (closure #1 on day of 2nd open)
    3. If opensystems date on #2 = closedate on #1 - use opensystem date on #2 instead of opendate (See Notes below).
    (6) If other complex reasons - delete people (6) If other complex reasons - flag these people as problematic

NOTES:

  • The Open Date is a date entered manually. It can be missing or an invalid date, or greater than Close Date, for example. The Open System Date is generated by the computer automatically on the date the record is being created. As such it can be used as a proxy for Open Date with some limitations (could be years apart from actual date) (personal communication, Natalia Dik, September 14, 2012).

  • "Delete" or "keep" indicates whether a person is or is not part of the study from this point on. In some cases only selected records per person are being used; a person may still part of the study, but not be all their records are being used (personal communication, Natalia Dik, September 14, 2012).

Exclusions

    The following were excluded by Doupe et al. (2011) prior to the creation of home care episodes with the case activity files:

    • Fake facilities
    • Fake PHINs
    • "non-admissions" (i.e. close reason =1)
    • Missing open date
    • Invalid dates
    • Duplicate dates (* methods different if you need to know facilitates or if you only care about dates)

Clean-Up

    Doupe et al. (2011) cleaned up the records by changing missing close dates and dates on records with negative LOS, or removing select clients and/or records. It is briefly described below. For more information, please see the section on Preparing TMM Data for Use in Appendix 1 of Doupe et al. (2011).

    • If CLOSE REASON = "not admitted to home care":
      1. and only 1 record, then client and record removed from raw data
      2. and >/= 2 records, the record only removed from raw data

    • If CLOSE DATE precedes OPEN DATE:
      1. Replace case activity open/close dates with system-generated dates

    • If OPEN/CLOSE DATES identical:
      1. Removed record to avoid over-counting home care days open

    • If records partially overlapped, the strategies used to modify/remove these depend on the degree of overlap and the OPEN REASON of the non-first record.

Related concepts 

Related terms 

References