Predictive Hacks

Permutations in R

permutations

During the interview process for Data Science positions, it is likely to be asked to calculate Combinations or Permutations. Today we will provide an example of how we can solve numerically permutation problems in R.


Find all Permutations of the word baboon

Mathematically we can approach this question as follows:

\(P=\frac{n!}{n_1! n_2! n_3!…n_k!}\)

Where:

  • \(n\) is the total number of object, i.e. letters in our case which is 6
  • \(n_1\) is the number of objects of type 1, for example, the number of b which is 2
  • \(n_2\) is the number of objects of type 2, for example, the number of a which is 1
  • \(n_3\) is the number of objects of type 3, for example, the number of o which is 2
  • \(n_4\) is the number of objects of type 4, for example, the number of n which is 1

Hence the number of permutations is \(P=\frac{6!}{2! \times 2!} = 180\)


Return all Permutations in R

Let’s return all permutations in R

Working with combinat package

library(combinat)
# get the list of all permutations
my_list<-combinat::permn(c("b","a","b","o","o","n"))

# convert the list to a matrix
my_matrix<-do.call(rbind,my_list)

#take the unique rows
my_matrix<-unique(my_matrix)

head(my_matrix)
 
     [,1] [,2] [,3] [,4] [,5] [,6]
[1,] "b"  "a"  "b"  "o"  "o"  "n" 
[2,] "b"  "a"  "b"  "o"  "n"  "o" 
[3,] "b"  "a"  "b"  "n"  "o"  "o" 
[4,] "b"  "a"  "n"  "b"  "o"  "o" 
[5,] "b"  "n"  "a"  "b"  "o"  "o" 
[6,] "n"  "b"  "a"  "b"  "o"  "o" 

If we want to get the number of rows of the table, which are actually our permutations:

dim(my_matrix)
# [1] 180   6

As expected we got 180 rows (the permutations) and 6 columns (the number of letters)


Comments

When we are in a position to get all the possible permutations, we will be able to calculate the permutations of more complicated problems. Let’s say, that the question was to calculate all the possible permutations of the word baboon but by picking 4 letters each time (instead of 6).

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

2 thoughts on “Permutations in R”

Leave a Comment

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.

Python

Intro to Chatbots with HuggingFace

In this tutorial, we will show you how to use the Transformers library from HuggingFace to build chatbot pipelines. Let’s