Sorting of Arrays in R Programming
Last Updated :
12 Jul, 2021
Prerequisite: R – Array
A vector is a uni-dimensional array, which is specified by a single dimension, length. A Vector can be created using the ‘c()‘ function. A list of values is passed to the c() function to create a vector. Sorting can be done either in ascending order or descending. There are few things which should be kept in mind before sorting. They are as follows:
- Order in which sorting needs to be performed - Ascending/Descending.
- Sorting according to multiple column criteria.
- Handling missing and duplicate values during sorting. The analyst must decide what should be done with missing and duplicate values. The overall impact on the data should be considered before removing or replacing null values.
Method 1: sort() function
sort() function in R is used to sort a vector. By default, it sorts a vector in increasing order. To sort in descending order, add a "decreasing" parameter to the sort function.
Syntax:
sort(name_of_vector, decreasing = TRUE)
Parameters:
name_of_vector: Vector to be sorted
decreasing: Boolean value to sort in descending order
Example 1:
R
# create a linear array
arr <- c(9, 8, 7, 6, 5, 4, 3, 2, 1)
# use of sort function to sort array
# by default it is sorted in increasing order
sort(arr)
Output:
[1] 1 2 3 4 5 6 7 8 9
Example 2:
R
# create linear array
arr <- c(1, 2, 3, 4, 5, 6, 7, 8, 9)
# use in built sort function
# to sort in decreasing order
sort(arr, decreasing = TRUE)
Output:
[1] 9 8 7 6 5 4 3 2 1
Note: The major drawback of the sort() function is that it cannot sort data frames.
Method 2: order() function
To overcome the drawback in method 1, we use the order() function, which also sorts data frames according to the specified column. To sort in decreasing order add negative sign. Data can also be sorted with multiple criteria. Suppose if the age of two persons is the same then, we can sort them on the basis of their names i.e. lexicographically. See the below examples.
Example 1:
R
# define dataframe
df <- data.frame("Age" = c(12, 21, 15, 5, 25),
"Name" = c("Johnny", "Glen", "Alfie",
"Jack", "Finch"))
# sort the dataframe on the basis of
# age column and store it in newdf
newdf <- df[order(df$Age), ]
# print sorted dataframe
print(newdf)
Output:
Age Name
4 5 Jack
1 12 Johnny
3 15 Alfie
2 21 Glen
5 25 Finch
Example 2:
R
# define vector
r = c(10, 20, 30, 40, 50, 60)
# sort in decreasing order
order(-r)
Output:
[1] 6 5 4 3 2 1
Example 3:
R
# define dataframe
df <- data.frame("Age" = c(12, 21, 15, 12, 25, 12),
"Name" = c("Johnny", "Glen", "Alfie",
"Jack", "Finch", "Aaron"))
# sort the dataframe first on the basis of
# Age and if age is same perform sort on Name
newdf <- df[order(df$Age, df$Name), ]
# print sorted dataframe
print(newdf)
Output:
Age Name
6 12 Aaron
4 12 Jack
1 12 Johnny
3 15 Alfie
2 21 Glen
5 25 Finch
Note: The output above is the indices of numbers. For instance, 60 is the largest in vector and had index 6. Thus, 6 is displayed first.
Method 3: Sorting array using the loop
- Create a linear array, say arr
- Create a variable swap. If swap is false after traversing the entire array, it means the array is already sorted and break the loop
- Else, run loop and copy original array into another array, say newArr, and start comparing adjacent elements in the original array
- If the current element is smaller than the previous element, then copy the current element of arr into the previous position of newArr and the previous element of arr into the current position of newArr. The newArr now has swapped elements.
- Copy newArr to original array arr and make swap = TRUE.
- Repeat until arr is sorted
Below is the implementation of the above approach.
R
# create linear array
arr <- c(9, 4, 5, 4, 5, 6, 3, 2, 1)
# repeat until break is encountered
repeat
{
# create a variable swap
swap = FALSE
# run loop from 2nd element till last element
for (i in 2:length(arr))
{
# copy original array into newArr
newArr <- arr
if (arr[i - 1] > arr[i])
{
newArr[i - 1] <- arr[i]
newArr[i] <- arr[i - 1]
arr <- newArr
swapped <- TRUE
}
}
if (!swapped) {break}
}
print(arr)
Output:
[1] 1 2 3 4 4 5 5 6 9
Method 4: The use of dplyr package
dplyr package is easy to use and reliable. The package includes arrange() method to sort the data. See the below examples.
Example 1:
R
# install package dplyr
install.packages("dplyr")
# import library dplyr
library(dplyr)
# create dataframe
df <- data.frame("Age" = c(12, 21, 15, 5, 25),
"Name" = c("Johnny", "Glen", "Alfie",
"Jack", "Finch"))
# sort the dataframe on the basis of
# age column using arrange method
arrange(df,age)
Output:
Age Name
4 5 Jack
1 12 Johnny
3 15 Alfie
2 21 Glen
5 25 Finch
Similar Reads
Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read
Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and
9 min read
3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power
13 min read
Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca
7 min read
CTE in SQL In SQL, a Common Table Expression (CTE) is an essential tool for simplifying complex queries and making them more readable. By defining temporary result sets that can be referenced multiple times, a CTE in SQL allows developers to break down complicated logic into manageable parts. CTEs help with hi
6 min read
What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac
13 min read
Python Variables In Python, variables are used to store data that can be referenced and manipulated during program execution. A variable is essentially a name that is assigned to a value. Unlike many other programming languages, Python variables do not require explicit declaration of type. The type of the variable i
6 min read
Spring Boot Interview Questions and Answers Spring Boot is a Java-based framework used to develop stand-alone, production-ready applications with minimal configuration. Introduced by Pivotal in 2014, it simplifies the development of Spring applications by offering embedded servers, auto-configuration, and fast startup. Many top companies, inc
15+ min read