constant: constant

View source: R/impute.r

constantR Documentation

constant

Description

Helper function for imputing constants

Usage

constant(n = 1)

Arguments

n

The value to return

Details

Returns a function that always returns the value of n.

Value

A function that when used simply returns n.

Author(s)

Jared P. Lander

Examples

constant(4)(1:10)

theDF <- data.frame(A=1:10, B=1:10, C=1:10)
theDF[c(1, 4, 6), c(1)] <- NA
theDF[c(3, 4, 8), c(3)] <- NA
simple.impute(theDF, constant(4))


useful documentation built on Oct. 24, 2023, 9:07 a.m.