R编码是寻找两个数中的最大数?[已关闭]

bvhaajcl  于 2023-09-27  发布在  其他
关注(0)|答案(1)|浏览(80)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
昨天关门了。
Improve this question
我想用R语言编程来找出两个数中最大的一个。
我无法预料如何做那件事。请给予我一个R编程的代码,找出两个数中最大的一个。我不知道如何写上面的代码。任何帮助,这将是非常感激和赞赏。

mepcadol

mepcadol1#

number1 <- 4
number2 <- 5
vec <- c(number1, number2)
max(vec, na.rm = TRUE)

相关问题