LET US R – PART 3- CREATE FUNCTIONS
Open RStudio, create a new R script and copy paste the below function to add two numbers
##Add two numbers
add2<-function(x,y)
{
x+y
}
Select the function in RStudio and click run. The console will execute the add2 function. Now, call the function by passing the arguments.
add2(5,4)
Click enter and the result will be displayed in the RStudio console
[1] 9
Congratulations! You have created your first function in R programming. You can try other arithmetic operator functions like subtract2, multiply2, divide2, and so on.