Skip to contents

Adds a specified term to a variable.

Usage

add_value(value, term)

Arguments

value

The variable to which the term is added.

term

The term to add.

Value

The variable with the term added.

Examples

add_value(10, 5) # Returns 15
#> [1] 15