R Return Output of for-Loop Using print() Function (Example Code)

This tutorial shows how to return the output of a for-loop using the print function in R programming.

Example: Print Output of for-Loop to RStudio Console

for(index in 1:3) {        # Running the for-loop
  my_output <- paste("I'm creating some awesome output for iteration", index)
  print(my_output)         # Apply print() function in R
}
# [1] "I'm creating some awesome output for iteration 1"
# [1] "I'm creating some awesome output for iteration 2"
# [1] "I'm creating some awesome output for iteration 3"

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

Menu
Top