Answers for "use of the with function in r"

R
1

fuction in r

# Create a function to print squares of numbers in sequence.
new.function <- function(a) {
   for(i in 1:a) {
      b <- i^2
      print(b)
   }
}

# Call the function new.function supplying 6 as an argument.
new.function(6)
Posted by: Guest on April-29-2020

Code answers related to "use of the with function in r"

Browse Popular Code Answers by Language