![]() |
VOOZH | about |
max() function in R Language is used to find the maximum element present in an object. This object can be a Vector, a list, a matrix, a data frame, etc..
Syntax: max(object, na.rm) Parameters: object: Vector, matrix, list, data frame, etc. na.rm: Boolean value to remove NA element.Example 1: Output:
[1] 9 [1] NA [1] 11Example 2: Output:
,, 1 [, 1] [, 2] [, 3] [1, ] 2 4 6 [2, ] 3 5 7,, 2 [, 1] [, 2] [, 3] [1, ] 8 10 12 [2, ] 9 11 13 [1] 13