Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

R 数学


简单数学

在 R 中,您可以使用**运算符**对数字执行常见的数学运算。

+ 运算符用于将两个值加在一起

示例

10 + 5
自己尝试 »

- 运算符用于减法

示例

10 - 5
自己尝试 »

您将在我们的 R 运算符教程 中了解更多关于可用运算符的信息。


内置数学函数

R 还有许多内置的数学函数,允许您对数字执行数学任务。

例如,min()max() 函数可用于查找集合中的最低或最高数字

示例

max(5, 10, 15)

min(5, 10, 15)
自己尝试 »


sqrt()

sqrt() 函数返回一个数字的平方根

示例

sqrt(16)
自己尝试 »

abs()

abs() 函数返回一个数字的绝对(正)值

示例

abs(-4.7)
自己尝试 »

ceiling() 和 floor()

ceiling() 函数将一个数字向上舍入到最接近的整数,而 floor() 函数将一个数字向下舍入到最接近的整数,并返回结果

示例

ceiling(1.4)

floor(1.4)
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.