How to find the Minimum of Two Numbers in R - Step by Step Examples
How to find the Minimum of Two Numbers in R ?
Answer
To find the minimum of two numbers in R, you can use the min function.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We assign values to variables
a
andb
. - We use the
min
function to find the minimum ofa
andb
. - We print the minimum value.
R Program
# Minimum of Two Numbers
a <- 10
b <- 15
min_val <- min(a, b)
print(paste('Minimum of', a, 'and', b, 'is:', min_val))
Output
[1] "Minimum of 10 and 15 is: 10"
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in R language with well detailed examples.