Vertitime
X
Technologies
AI
ML
GenAI
Data Science
R
Python
Pandas
Data Analytics
SQL
C
Html
Javascript
Data Structure
JAVA
CSS
Swift
Azure Cloud
AWS Cloud
DevOps
Microservices
Interview Questions
What is R
R Data Types
R If Else
R For Loop
R Switch Case
R Arrays
R Variables
R Strings
R Operators
R Lists
R Numbers
R While Loop
R Functions
R Vectors
R Data Frame
R Factors
R Data Set
R Max Min
R Percentile
R Plot
R Bars
R Line
R Pie Chart
R If Else.
If statement is written with the if keyword, and it is used to specify a block of code to be executed if a condition is TRUE.
Else statement is executed, if condition is not true and hence if section will not be executed instead else will be.
Example -
a < 10
b < 20
if (b < a) {
print("a is greater than b")
}