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