Inheritance is one of the concept in object oriented programming by which new classes can derived from existing or base classes helping in re-usability of code. Derived classes can be the same as a base class or can have extended features which creates a hierarchical structure of classes in the programming environment. In this article, we'll discuss how inheritance is followed out with three different types of classes in R programming.
Inheritance in S3 Class
S3 class in R programming language has no formal and fixed definition. In an S3 object, a list with its class attribute is set to a class name. S3 class objects inherit only methods from its base class.
1. Creating the student class constructor
The first part of the code defines a function student that takes three arguments: name, age and roll number. Inside the function, we create a list value that holds these three attributes. Afterward, we assign the class student to this list by using the attr() function. This makes the list an object of the student class and we return the object to be used later.
R
student <- function(n, a, r) {
value <- list(name = n, age = a, rno = r)
attr(value, "class") <- student
value
}
2. Defining the print.student method
Next, we define a method called print.student. This method is specifically designed to handle objects of the student class. When we call print() on a student object, this method will be executed. The print.student method uses the cat() function to display the student's name, age and roll number on the screen.
R
print.student <- function(obj) {
cat(obj$name, "\n")
cat(obj$age, "\n")
cat(obj$rno, "\n")
}
3. Creating a basic student object
We then create a student object s by making a list with the student's name, age, roll number and country. After creating this list, we assign two classes to it: "InternationalStudent" and "student". The order of these classes matters because R will try to find the method in the first class and then fall back to the second if it doesn't find it. This is done by setting the class() attribute for the object.
R
s <- list(name = "Utkarsh", age = 21, rno = 96, country = "India")
class(s) <- c("InternationalStudent", "student")
4. Calling the print method on the student object
After defining the object s, we call print(s) to print its details. Since the print.student method is defined, it gets called. This method prints the name, age and roll number of the student as specified in the earlier code block.
R
cat("The method print.student() is inherited:\n")
print(s)
Output:
The method print.student() is inherited:
Utkarsh
21
96
5. Overriding the print method for InternationalStudent
At this point, we define a new print method specifically for objects of the class "InternationalStudent". This method will print the student's name and their country, instead of just the name, age and roll number. This effectively overrides the previous print behavior when the object has the InternationalStudent class.
R
print.InternationalStudent <- function(obj) {
cat(obj$name, "is from", obj$country, "\n")
}
6. Calling the overridden print method
After defining the new print method for "InternationalStudent", we call print(s) again. This time, the overridden print.InternationalStudent method gets invoked because the object s now also belongs to the InternationalStudent class. This method prints the student's name along with the country they are from, which shows the behavior of inheritance and method overriding in action.
R
cat("After overwriting method print.student():\n")
print(s)
Output:
After overwriting method print.student():
Utkarsh is from India
7. Checking if object s inherits from the student class:
Finally, we use the inherits() function to check if the object s is inherited from the student class. This function returns TRUE because the object s is indeed of class student (since student is part of the class hierarchy of s).
R
cat("Does object 's' inherit from class 'student'? ", inherits(s, "student"), "\n")
Output:
Does object 's' inherit from class 'student'? TRUE
Inheritance in S4 Class
S4 class in R programming have proper definition and derived classes will be able to inherit both attributes and methods from its base class.
1. Defining the S4 class student
The first part of the code defines an S4 class named student with three slots: name, age and rno (roll number). S4 classes allow you to specify types for each slot, ensuring that only valid data is stored in the object.
R
setClass("student",
slots = list(name = "character",
age = "numeric", rno = "numeric")
)
2. Defining a method to display object details
Next, we define a show method for the student class. This method will print the name, age and rno of the object when it is printed using the show() function. The @ operator is used to access the slots of an S4 object.
R
setMethod("show", "student",
function(obj){
cat(obj@name, "\n")
cat(obj@age, "\n")
cat(obj@rno, "\n")
}
)
3. Inheriting from student class to create InternationalStudent
In this section, we create a new class InternationalStudent, which inherits from the student class. This means that InternationalStudent objects will have all the slots of the student class (i.e., name, age and rno). We add an extra slot country to store the country of the international student.
R
setClass("InternationalStudent",
slots = list(country = "character"),
contains = "student"
)
4. Creating an object of InternationalStudent and displaying details
Here, we create an object s of the class InternationalStudent using the new() function. We pass values for name, age, rno and country. Then, we call the show(s) method to print the details of the s object, which includes information from both the inherited student class and the country attribute from InternationalStudent.
R
s <- new("InternationalStudent", name = "Utkarsh",
age = 21, rno = 96, country="India")
show(s)
Output:
Utkarsh
21
96
Inheritance in Reference Class
Inheritance in reference class is almost similar to the S4 class and uses setRefClass() function to perform inheritance.
1. Defining the student class using setRefClass
The first part of the code defines a student class using setRefClass, which allows us to create reference classes in R. We define three fields: name, age and rno. We also define two methods: inc_age (to increase the age) and dec_age (to decrease the age). These methods modify the age field of the object.
R
student <- setRefClass("student",
fields = list(name = "character",
age = "numeric", rno = "numeric"),
methods = list(
inc_age = function(x) {
age <<- age + x
},
dec_age = function(x) {
age <<- age - x
}
)
)
2. Inheriting from the student class to create InternStudent
In this step, we create a new class InternStudent that inherits from the student class using the contains argument. In addition to the fields inherited from student, we define an extra field country and override the dec_age method. The overridden dec_age method ensures that the age doesn't go below zero by checking if the age minus the decrement is negative. If so, it stops the operation with an error message.
R
InternStudent <- setRefClass("InternStudent",
fields = list(country = "character"),
contains = "student",
methods = list(
dec_age = function(x) {
if ((age - x) < 0) {
stop("Age cannot be negative")
}
age <<- age - x
}
)
)
3. Creating an InternStudent object and modifying the age
Here, we create an object s of the InternStudent class by passing values for name, age, rno and country. Then, we call the dec_age method twice: first to decrease the age by 5 and then by 20. The first call is successful, but the second call will result in an error because it will attempt to reduce the age below zero.
R
s <- InternStudent(name = "Utkarsh",
age = 21, rno = 96, country = "India")
cat("Decrease age by 5\n")
s$dec_age(5)
cat("Age after decreasing by 5:", s$age, "\n")
Output:
Decrease age by 5
Age after decreasing by 5: 16
In this article, we discussed how inheritance was followed out with three different types of classes in R programming.
Similar Reads
R Tutorial | Learn R Programming Language R is an interpreted programming language widely used for statistical computing, data analysis and visualization. R language is open-source with large community support. R provides structured approach to data manipulation, along with decent libraries and packages like Dplyr, Ggplot2, shiny, Janitor a
4 min read
Introduction
R Programming Language - IntroductionR is a programming language and software environment that has become the first choice for statistical computing and data analysis. Developed in the early 1990s by Ross Ihaka and Robert Gentleman, R was built to simplify complex data manipulation and create clear, customizable visualizations. Over ti
4 min read
Interesting Facts about R Programming LanguageR is an open-source programming language that is widely used as a statistical software and data analysis tool. R generally comes with the Command-line interface. R is available across widely used platforms like Windows, Linux, and macOS. Also, the R programming language is the latest cutting-edge to
4 min read
R vs PythonR Programming Language and Python are both used extensively for Data Science. Both are very useful and open-source languages as well. For data analysis, statistical computing, and machine learning Both languages are strong tools with sizable communities and huge libraries for data science jobs. A th
5 min read
Environments in R ProgrammingThe environment is a virtual space that is triggered when an interpreter of a programming language is launched. Simply, the environment is a collection of all the objects, variables, and functions. Or, Environment can be assumed as a top-level object that contains the set of names/variables associat
3 min read
Introduction to R StudioR Studio is an integrated development environment(IDE) for R. IDE is a GUI, where you can write your quotes, see the results and also see the variables that are generated during the course of programming. R Studio is available as both Open source and Commercial software.R Studio is also available a
4 min read
How to Install R and R Studio?Navigating the R language installation process and setting up R Studio is crucial for anyone looking to delve into data analysis, statistical computing, and graphical representation with R. In this article, we provide a step-by-step guide on how to install R and configure R Studio on your system. Wh
6 min read
Creation and Execution of R File in R StudioR Studio is an integrated development environment(IDE) for R. IDE is a GUI, where you can write your quotes, see the results and also see the variables that are generated during the course of programming. R is available as an Open Source software for Client as well as Server Versions. Creating an R
5 min read
Clear the Console and the Environment in R StudioR Studio is an integrated development environment(IDE) for R. IDE is a GUI, where you can write your quotes, see the results and also see the variables that are generated during the course of programming. Clearing the Console We Clear console in R and RStudio, In some cases when you run the codes us
2 min read
Hello World in R ProgrammingWhen we start to learn any programming languages we do follow a tradition to begin HelloWorld as our first basic program. Here we are going to learn that tradition. An interesting thing about R programming is that we can get our things done with very little code. Before we start to learn to code, le
2 min read
Fundamentals of R
Basic Syntax in R ProgrammingR is the most popular language used for Statistical Computing and Data Analysis with the support of over 10, 000+ free packages in CRAN repository. Like any other programming language, R has a specific syntax which is important to understand if you want to make use of its features. This article assu
3 min read
Comments in RIn R Programming Language, Comments are general English statements that are typically written in a program to describe what it does or what a piece of code is designed to perform. More precisely, information that should interest the coder and has nothing to do with the logic of the code. They are co
3 min read
R-OperatorsOperators are the symbols directing the compiler to perform various kinds of operations between the operands. Operators simulate the various mathematical, logical, and decision operations performed on a set of Complex Numbers, Integers, and Numericals as input operands. R supports majorly four kinds
5 min read
R-KeywordsR keywords are reserved words that have special meaning in the language. They help control program flow, define functions, and represent special values. We can check for which words are keywords by using the help(reserved) or ?reserved function.Rhelp(reserved) # or "?reserved"Output:Reserved Key Wor
2 min read
R-Data TypesData types in R define the kind of values that variables can hold. Choosing the right data type helps optimize memory usage and computation. Unlike some languages, R does not require explicit data type declarations while variables can change their type dynamically during execution.R Programming lang
5 min read
Variables
R Variables - Creating, Naming and Using Variables in RA variable is a memory location reserved for storing data, and the name assigned to it is used to access and manipulate the stored data. The variable name is an identifier for the allocated memory block, which can hold values of various data types during the programâs execution.In R, variables are d
5 min read
Scope of Variable in RIn R, variables are the containers for storing data values. They are reference, or pointers, to an object in memory which means that whenever a variable is assigned to an instance, it gets mapped to that instance. A variable in R can store a vector, a group of vectors or a combination of many R obje
5 min read
Dynamic Scoping in R ProgrammingR is an open-source programming language that is widely used as a statistical software and data analysis tool. R generally comes with the Command-line interface. R is available across widely used platforms like Windows, Linux, and macOS. Also, the R programming language is the latest cutting-edge to
5 min read
Lexical Scoping in R ProgrammingLexical scoping means R decides where to look for a variable based on where the function was written (defined), not where it is called.When a function runs and it sees a variable, R checks:Inside the function, is the variable there?If not, it looks in the environment where the function was created.T
4 min read
Input/Output
Control Flow
Control Statements in R ProgrammingControl statements are expressions used to control the execution and flow of the program based on the conditions provided in the statements. These structures are used to make a decision after assessing the variable. In this article, we'll discuss all the control statements with the examples. In R pr
4 min read
Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switchDecision making in programming allows us to control the flow of execution based on specific conditions. In R, various decision-making structures help us execute statements conditionally. These include:if statementif-else statementif-else-if laddernested if-else statementswitch statement1. if Stateme
3 min read
Switch case in RSwitch case statements are a substitute for long if statements that compare a variable to several integral values. Switch case in R is a multiway branch statement. It allows a variable to be tested for equality against a list of values. Switch statement follows the approach of mapping and searching
2 min read
For loop in RFor loop in R Programming Language is useful to iterate over the elements of a list, data frame, vector, matrix, or any other object. It means the for loop can be used to execute a group of statements repeatedly depending upon the number of elements in the object. It is an entry-controlled loop, in
5 min read
R - while loopWhile loop in R programming language is used when the exact number of iterations of a loop is not known beforehand. It executes the same code again and again until a stop condition is met. While loop checks for the condition to be true or false n+1 times rather than n times. This is because the whil
5 min read
R - Repeat loopRepeat loop in R is used to iterate over a block of code multiple number of times. And also it executes the same code again and again until a break statement is found. Repeat loop, unlike other loops, doesn't use a condition to exit the loop instead it looks for a break statement that executes if a
2 min read
goto statement in R ProgrammingGoto statement in a general programming sense is a command that takes the code to the specified line or block of code provided to it. This is helpful when the need is to jump from one programming section to the other without the use of functions and without creating an abnormal shift. Unfortunately,
2 min read
Break and Next statements in RIn R Programming Language, we require a control structure to run a block of code multiple times. Loops come in the class of the most fundamental and strong programming concepts. A loop is a control statement that allows multiple executions of a statement or a set of statements. The word âloopingâ me
3 min read
Functions
Functions in R ProgrammingA function accepts input arguments and produces the output by executing valid R commands that are inside the function. Functions are useful when you want to perform a certain task multiple times. In R Programming Language when you are creating a function the function name and the file in which you a
8 min read
Function Arguments in R ProgrammingArguments are the parameters provided to a function to perform operations in a programming language. In R programming, we can use as many arguments as we want and are separated by a comma. There is no limit on the number of arguments in a function in R. In this article, we'll discuss different ways
4 min read
Types of Functions in R ProgrammingA function is a set of statements orchestrated together to perform a specific operation. A function is an object so the interpreter is able to pass control to the function, along with arguments that may be necessary for the function to accomplish the actions. The function in turn performs the task a
6 min read
Recursive Functions in R ProgrammingRecursion, in the simplest terms, is a type of looping technique. It exploits the basic working of functions in R. Recursive Function in R: Recursion is when the function calls itself. This forms a loop, where every time the function is called, it calls itself again and again and this technique is
4 min read
Conversion Functions in R ProgrammingSometimes to analyze data using R, we need to convert data into another data type. As we know R has the following data types Numeric, Integer, Logical, Character, etc. similarly R has various conversion functions that are used to convert the data type. In R, Conversion Function are of two types: Con
4 min read
Data Structures
Data Structures in R ProgrammingA data structure is a particular way of organizing data in a computer so that it can be used effectively. The idea is to reduce the space and time complexities of different tasks. Data structures in R programming are tools for holding multiple values. Râs base data structures are often organized by
4 min read
R StringsStrings are a bunch of character variables. It is a one-dimensional array of characters. One or more characters enclosed in a pair of matching single or double quotes can be considered a string in R. It represents textual content and can contain numbers, spaces, and special characters. An empty stri
6 min read
R-VectorsR Vectors are the same as the arrays in R language which are used to hold multiple data values of the same type. One major key point is that in R Programming Language the indexing of the vector will start from '1' and not from '0'. We can create numeric vectors and character vectors as well. R - Vec
4 min read
R-ListsA list in R programming is a generic object consisting of an ordered collection of objects. Lists are one-dimensional, heterogeneous data structures. The list can be a list of vectors, a list of matrices, a list of characters, a list of functions, and so on. A list in R is created with the use of th
6 min read
R - ArrayArrays are important data storage structures defined by a fixed number of dimensions. Arrays are used for the allocation of space at contiguous memory locations.In R Programming Language Uni-dimensional arrays are called vectors with the length being their only dimension. Two-dimensional arrays are
7 min read
R-MatricesR-matrix is a two-dimensional arrangement of data in rows and columns. In a matrix, rows are the ones that run horizontally and columns are the ones that run vertically. In R programming, matrices are two-dimensional, homogeneous data structures. These are some examples of matrices:R - MatricesCreat
10 min read
R-FactorsFactors in R Programming Language are used to represent categorical data, such as "male" or "female" for gender. While they might seem similar to character vectors, factors are actually stored as integers with corresponding labels. Factors are useful when dealing with data that has a fixed set of po
4 min read
R-Data FramesR Programming Language is an open-source programming language that is widely used as a statistical software and data analysis tool. Data Frames in R Language are generic data objects of R that are used to store tabular data. Data frames can also be interpreted as matrices where each column of a matr
6 min read
Object Oriented Programming
R-Object Oriented ProgrammingIn R, Object-Oriented Programming (OOP) uses classes and objects to manage program complexity. R is a functional language that applies OOP concepts. Class is like a car's blueprint, detailing its model, engine and other features. Based on this blueprint, we select a car, which is the object. Each ca
7 min read
Classes in R ProgrammingClasses and Objects are core concepts in Object-Oriented Programming (OOP), modeled after real-world entities. In R, everything is treated as an object. An object is a data structure with defined attributes and methods. A class is a blueprint that defines a set of properties and methods shared by al
3 min read
R-ObjectsIn R programming, objects are the fundamental data structures used to store and manipulate data. Objects in R can hold different types of data, such as numbers, characters, lists, or even more complex structures like data frames and matrices.An object in R is important an instance of a class and can
3 min read
Encapsulation in R ProgrammingEncapsulation is the practice of bundling data (attributes) and the methods that manipulate the data into a single unit (class). It also hides the internal state of an object from external interference and unauthorized access. Only specific methods are allowed to interact with the object's state, en
3 min read
Polymorphism in R ProgrammingR language implements parametric polymorphism, which means that methods in R refer to functions, not classes. Parametric polymorphism primarily lets us define a generic method or function for types of objects we havenât yet defined and may never do. This means that one can use the same name for seve
6 min read
R - InheritanceInheritance is one of the concept in object oriented programming by which new classes can derived from existing or base classes helping in re-usability of code. Derived classes can be the same as a base class or can have extended features which creates a hierarchical structure of classes in the prog
3 min read
Abstraction in R ProgrammingPeople who've been using the R language for any period of time have likely grown to be conversant in passing features as arguments to other functions. However, people are a whole lot much less probably to go back functions from their personal custom code. This is simply too horrific because doing so
5 min read
Looping over Objects in R ProgrammingOne of the biggest issues with the âforâ loop is its memory consumption and its slowness in executing a repetitive task. When it comes to dealing with a large data set and iterating over it, a for loop is not advised. In this article we will discuss How to loop over a list in R Programming Language
5 min read
S3 class in R ProgrammingAll things in the R language are considered objects. Objects have attributes and the most common attribute related to an object is class. The command class is used to define a class of an object or learn about the classes of an object. Class is a vector and this property allows two things:  Objects
8 min read
Explicit Coercion in R ProgrammingCoercing of an object from one type of class to another is known as explicit coercion. It is achieved through some functions which are similar to the base functions. But they differ from base functions as they are not generic and hence do not call S3 class methods for conversion. Difference between
3 min read
Error Handling