Home » R For Loop

R For Loop

A for loop is the most popular control flow statement. A for loop is used to iterate a vector. It is similar to the while loop. There is only one difference between for and while, i.e., in while loop, the condition is checked before the execution of the body, but in for loop condition is checked after the execution of the body.

There is the following syntax of For loop in C/C++:

How For loop works in C/C++?

The for loop in C and C++ is executed in the following way:

  • The initialization statement of for loop is executed only once.
  • After the initialization process, the test expression is evaluated. The for loop is terminated when the test expression is evaluated to false.
  • The statements inside the body of for loop are executed, and expression is updated if the test expression is evaluated to true.
  • The test expression is again evaluated.
  • The process continues until the test expression is false. The loop terminates when the test expression is false.

For loop in R Programming

In R, a for loop is a way to repeat a sequence of instructions under certain conditions. It allows us to automate parts of our code which need repetition. In simple words, a for loop is a repetition control structure. It allows us to efficiently write the loop that needs to execute a certain number of time.

In R, a for loop is defined as :

  1. It starts with the keyword for like C or C++.
  2. Instead of initializing and declaring a loop counter variable, we declare a variable which is of the same type as the base type of the vector, matrix, etc., followed by a colon, which is then followed by the array or matrix name.
  3. In the loop body, use the loop variable rather than using the indexed array element.
  4. There is a following syntax of for loop in R:

Flowchart

R For Loop

Example 1: We iterate all the elements of a vector and print the current value.

Output

R For Loop

Example 2: creates a non-linear function with the help of the polynomial of x between 1 and 5 and store it in a list.

Output

R For Loop

Example 3: For loop over a matrix

Output

R For Loop

Example 4: For loop over a list

Output

R For Loop

Example 5: count the number of even numbers in a vector.# Create a list with three vectors.

Output

R For Loop


Next TopicR Repeat Loop

You may also like