Lets create a function to add two numbers in R
add <- function(a,b){
a+b}
Thats it. 🙂
add(1,7) [1] 8
My thoughts, opinions and experiences

Lets create a function to add two numbers in R
add <- function(a,b){
a+b}
Thats it. 🙂
add(1,7) [1] 8