Question: Using R studio I created a loop to print all even numbers from 1-30. Here is my code: is.even

Using R studio

I created a loop to print all even numbers from 1-30. Here is my code:

is.even <- function(x) ... I created a loop to print all even numbers from 1-30. Here is my code:

is.even <- function(x) x%%2 == 0

for (i in 1:30){

if(is.even(i)){print(i)} }

How do I create this same loop using the apply function wth a sec(1,30) for my data?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!