R

R_programming_1

R-Programming

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. […]

R-Programming Read More »