Download as pdf or txt
Download as pdf or txt
You are on page 1of 7

GMR Institute of Technology

Rajam, Andhra Pradesh


(An Autonomous Institution Affiliated to JNTUK, AP)

Cohesive Teaching – Learning Practices (CTLP)


Class 7th Sem. – B. Tech. Department: CSE & IT
Course Big Data Analytics Course Code 16IT701
Prepared by Ms.U.Archana, Assistant Professor
Lecture Topic Arithmetic and Boolean Operators and values, Default Values for Argument
Course Outcome (s) COIT701.6 Program Outcome (s) PO2,PO5,PO6
Duration 50 Min Lecture 40 of 45 Unit IV
Pre-requisite (s) Related to Control Statements, Loops

1. Objective

 To impart the knowledge on operators in R.

2. Intended Learning Outcomes (ILOs)

At the end of this session the students will able to:

A. Understand the operators and arguments.(M)


B. Remember the arithmetic and Boolean operators.(M)

3. 2D Mapping of ILOs with Knowledge Dimension and Cognitive Learning Levels of


RBT

Cognitive Learning Levels (2D)


Knowledge
Remember Understand Apply Analyze Evaluate Create
Dimension (1D)
Factual
Conceptual B A
Procedural
Meta Cognitive

Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh
4. Teaching Methodology

 Chalk & Board

5. Evocation

6. Deliverables

Operators in R
An operator is a symbol that tells the compiler to perform specific mathematical or
logical manipulations. R language is rich in built-in operators and provides following
types of operators.
Types of Operators
We have the following types of operators in R programming −
 Arithmetic Operators
 Relational Operators
 Logical Operators
 Assignment Operators
 Miscellaneous Operators

Arithmetic Operators
These operators are used to carry out mathematical operations like addition and
multiplication. Here is a list of arithmetic operators available in R.
Operator Description
+ Addition
– Subtraction
* Multiplication
/ Division
^ Exponent
%% Modulus (Remainder from division)
%/% Integer Division

Example
> x <- 5
> y <- 16
> x+y
[1] 21
> x-y

Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh
[1] -11
> x*y
[1] 80
> y/x
[1] 3.2
> y%/%x
[1] 3
> y%%x
[1] 1
> y^x
[1] 1048576

Relational Operators
Relational operators are used to compare between values. Here is a list of relational
operators available in R.
Operator Description
< Less than
> Greater than
<= Less than or equal to
>= Greater than or equal to
== Equal to
!= Not equal to

Example

> x <- 5
> y <- 16
> x<y
[1] TRUE
> x>y
[1] FALSE
> x<=5
[1] TRUE
> y>=20
[1] FALSE
> y == 16
[1] TRUE
> x != 5
[1] FALSE

Logical operators
Logical operators are used to carry out Boolean operations
like AND, OR etc.
Operator Description
! Logical NOT
& Element-wise logical AND
&& Logical AND
| Element-wise logical OR
Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh
|| Logical OR

Operators & and | perform element-wise operation producing result having


length of the longer operand.

But && and || examines only the first element of the operands resulting into a
single length logical vector.

Zero is considered FALSE and non-zero numbers are taken as TRUE.

Example

> x <- c(TRUE,FALSE,0,6)


> y <- c(FALSE,TRUE,FALSE,TRUE)
> !x
[1] FALSE TRUE TRUE FALSE
> x&y
[1] FALSE FALSE FALSE TRUE
> x&&y
[1] FALSE
> x|y
[1] TRUE TRUE FALSE TRUE
> x||y
[1] TRUE

Assignment Operators
These operators are used to assign values to variables.
Operator Description
<-, <<-, = Leftwards assignment
->, ->> Rightwards assignment

The operators <- and = can be used, almost interchangeably, to assign to


variable in the same environment.

The <<- operator is used for assigning to variables in the parent environments
(more like global assignments). The rightward assignments, although available are
rarely used.
Example

> x <- 5
>x
[1] 5
>x=9
>x
[1] 9
> 10 -> x
>x
[1] 10

Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh
Miscellaneous Operators
These operators are used to for specific purpose and not general mathematical
or logical computation.
Operator Description Example

: Colon operator. It
v <- 2:8
creates the series of
numbers in sequence
for a vector. print(v)

it produces the following result −

[1] 2 3 4 5 6 7 8
%in% This operator is used
v1 <- 8
to identify if an
element belongs to a
vector. v2 <- 12

t <- 1:10

print(v1 %in% t)

print(v2 %in% t)

it produces the following result −

[1] TRUE
[1] FALSE
%*% This operator is used
M = matrix( c(2,6,5,1,10,4), nrow = 2,ncol = 3,byrow = TRUE)
to multiply a matrix
with its transpose.
t = M %*% t(M)

print(t)

it produces the following result −

[,1] [,2]
[1,] 65 82
[2,] 82 117

Default Values for Arguments


Suppose if we read in a data set from a file named exams:
> testscores <- read.table("exams",header=TRUE)
The argument header=TRUE tells R that we have a header line, so R should not count that first
line in the file as data.
This is an example of the use of named arguments.

Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh
The second formal argument is named header. The = FALSE field means that this argument is
optional, and if we don’t specify it, the default value will be FALSE. If we don’t want the default
value, we must name the argument in our call:
> testscores <- read.table("exams",header=TRUE)
Hence the terminology named argument.
R uses lazy evaluation—it does not evaluate an expression until/unless it needs to—the
named argument may not actually be used.

7. Keywords
 Miscellaneous Operators
 lazy evaluation

8. Sample Questions

Remember

1. What are the types of operators in R.


2. What is a lazy evaluation.

Understand

1. Explain about miscellaneous operators in R.


2. Explain about all operators with an example.

9. Stimulating Question (s)

 Give example of defining arguments as default values.


 Specify the new operators that you observe in R.

10. Mind Map

Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh
11. Student Summary

At the end of this session, the facilitator (Teacher) shall randomly pic-up few students to
summarize the deliverables

12. Reading Materials

 The Art of R Programming, Norman Matloff, Cengage Learning, 1st Edition, 2011;Page No: 145-
147

13.Scope for Mini Project

 ---

Form No. AC 04. 01.2016 (R: 06.10.2016)– GMRIT, Rajam, Andhra Pradesh

You might also like