Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Equality The most basic form of comparison is equality. Let's briefly recap its syntax. The following statements all evaluate to TRUE ( feel free to

Equality
The most basic form of comparison is equality. Let's briefly recap its syntax. The following statements all evaluate to TRUE (feel free to try them out in the console).
3==(2+1)
"intermediate" !="r"
TRUE != FALSE
"Rchitect" != "rchitect"
Notice from the last expression that R is case sensitive: "R" is not equal to "r". Keep this in mind when solving the exercises in this chapter!
Instructions
100 XP
In the editor on the right, write R code to see if TRUE equals FALSE.
Likewise, check if -6*14 is not equal to 17-101.
Next up: comparison of character strings. Ask R whether the strings "useR" and "user" are equal.
Finally, find out what happens if you compare logicals to numerics: are TRUE and 1 equal?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions