adjust_overlapping_stays: Check and fix overlapping admissions.

View source: R/DataManagement.R

adjust_overlapping_staysR Documentation

Check and fix overlapping admissions.

Description

This function checks if a discharge (n) is not later than the next (n+1) admission. If this is the case, it sets the date of discharge n to date of discharge n+1, and creates an extra record running from discharge n+1 to discharge n. If the length of stay of this record is negative, it removes it. It is possible that one pass of this algorithm doesn't clear all overlapping admissions (e.g. when one admission overlaps with more than one other admission), it is therefore iterated until no overlapping admissions are found. Returns the corrected database.

Usage

adjust_overlapping_stays(
  report,
  maxIteration = 25,
  verbose = FALSE,
  retainAuxData = TRUE,
  ...
)

Arguments

report

(list). A list containing the base and in which will be stored reporting variables. The base is a patient discharge database, in the form of a data.table. The data.table should have at least the following columns: sID: subjectID (character) fID: facilityID (character) Adate: admission date (POSIXct, but character can be converted to POSIXct) Ddate: discharge date (POSIXct, but character can be converted to POSIXct)

maxIteration

(integer) the maximum number of times the function will try and remove overlapping admissions.

verbose

(boolean) print diagnostic messages. Default is FALSE.

retainAuxData

(boolean) allow retaining additional data provided in the database. Default is TRUE.

...

other parameters passed on to internal functions

Value

The corrected database as data.table.


PascalCrepey/HospitalNetwork documentation built on March 7, 2023, 5:41 a.m.