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 中有三种数字类型

  • 数值型(numeric)
  • 整型(integer)
  • 复数型(complex)

当您为变量赋值时,就会创建数字类型的变量。

示例

x <- 10.5   # 数值型
y <- 10L    # 整型
z <- 1i     # 复数型

数值型

在 R 中,numeric 数据类型是最常见的类型,它包含任何带或不带小数点的数字,例如:10.5、55、787。

示例

x <- 10.5
y <- 55

# 打印 x 和 y 的值
x
y

# 打印 x 和 y 的类名
class(x)
class(y)
自己试一试 »

整型

整数是无小数点的数值数据。当您确定永远不会创建应该包含小数点的变量时,可以使用此类型。要创建 integer 变量,必须在整数值后使用字母 L

示例

x <- 1000L
y <- 55L

# 打印 x 和 y 的值
x
y

# 打印 x 和 y 的类名
class(x)
class(y)
自己试一试 »


复数型

复数用“i”表示虚部。

示例

x <- 3+5i
y <- 5i

# 打印 x 和 y 的值
x
y

# 打印 x 和 y 的类名
class(x)
class(y)
自己试一试 »

类型转换

您可以使用以下函数在不同类型之间进行转换。

  • as.numeric()
  • as.integer()
  • as.complex()

示例

x <- 1L # 整型
y <- 2 # 数值型

# 将整型转换为数值型
a <- as.numeric(x)

# 将数值型转换为整型
b <- as.integer(y)

# 打印 x 和 y 的值
x
y

# 打印 a 和 b 的类名
class(a)
class(b)
自己试一试 »

×

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.