Skip to contents

Multiplies a variable by a specified multiplier.

Usage

multiply_by(value, multiplier)

Arguments

value

The variable to multiply.

multiplier

The multiplier value.

Value

The variable multiplied by the multiplier.

Examples

multiply_by(10, 5) # Returns 50
#> [1] 50