Create Variable from Combining Variables

appetizer
create variable
none spicy
Author

Ryan Garnett

Published

March 29, 2023

Description
Create a variable object in memory by combining two variable objects together
Ingredients
Package Data
NA NA


Preparation

first_number_variable <- 5
second_number_variable <- 10


Sample Instructions

object_name <- variable1 + variable2


Actual Instructions

combined_variable <- first_number_variable + second_number_variable