Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Selection by comparison - Step 1 By making use of comparison operators, we can approach the previous question in a more proactive way. The (

Selection by comparison - Step 1
By making use of comparison operators, we can approach the previous question in a more proactive way.
The (logical) comparison operators known to R are:
for less than
> for greater than
= for less than or equal to
== for equal to each other
not equal to each other
As seen in the previous chapter, stating 6>5 returns TRUE. The nice thing about R is that you can use these comparison operators also on vectors. For example:
c(4,5,6)>5
[1] FALSE FALSE TRUE
This command tests for every element of the vector if the condition stated by the comparison operator is TRUE or FALSE .
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Accidental Data Scientist

Authors: Amy Affelt

1st Edition

1573877077, 9781573877077

Students also viewed these Databases questions