Get_DoW_values_past: Documentation of the function Get_DoW_values_past

Description Usage Arguments Value Author(s) Examples

View source: R/Core_Functions.R

Description

The function that grabs the non-missing, same day-of-week values that are past of the missing value we are trying to impute. e.g. If it is Monday that is missing, grab Monday values of the week before, 2 weeks before, etc.

Usage

1
Get_DoW_values_past(variable_vector, index, bin_size)

Arguments

variable_vector

Variable, in vector format, of which we would like to impute missing values

index

Index of missing value to impute

bin_size

Number of non-missing past values to grab, which will be used for imputation

Value

Vector of non-missing same day-of-week values, as many as the indicated bin size, past of the missing value to impute

Author(s)

Jimin Lauren Yoo

Examples

1
2
temp=c(1,2,3,4,NA,NA,5,8,9,10,11,12,13,14, 15,16,17,18,19,20,21)
Get_DoW_values_past(temp, index=10, bin_size=3)

jmybhm/Impute_Mobile_Health documentation built on July 23, 2019, 2:11 a.m.