Introduction to Loops

Let's begin learning all about loops in R.

What are Loops?

There may be a situation when we need to execute a block of code multiple times.

In general, statements are executed sequentially, which means one after another. The first statement executed first, followed by the second, and so on. However, now we want certain statements to be executed again and again given that a condition is satisfied.

Printing Numbers Example

Suppose we are given a task to print numbers from 11 to 55. We can use 55 print() statements for this:

Create a free account to access the full course.

By signing up, you agree to Educative's Terms of Service and Privacy Policy