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 中,变量不需要声明任何特定的类型,甚至可以在设置后更改类型。

示例

my_var <- 30 # my_var 的类型为 **数值型**
my_var <- "Sally" # my_var 现在是 **字符型**(也称为字符串)
自己尝试 »

R 拥有各种数据类型和对象类。随着您继续了解 R,您将学习更多关于这些类型的信息。


基本数据类型

R 中的基本数据类型可以分为以下几种类型:

  • 数值型 - (10.5, 55, 787)
  • 整数 - (1L, 55L, 100L,其中字母“L”表示这是一个整数)
  • 复数 - (9 + 3i,其中“i”是虚部)
  • 字符型(也称为字符串) - ("k", "R is exciting", "FALSE", "11.5")
  • 逻辑型(也称为布尔值) - (TRUE 或 FALSE)

我们可以使用 class() 函数来检查变量的数据类型。

示例

# 数值型
x <- 10.5
class(x)

# 整数型
x <- 1000L
class(x)

# 复数型
x <- 9i + 3
class(x)

# 字符型/字符串型
x <- "R is exciting"
class(x)

# 逻辑型/布尔值型
x <- TRUE
class(x)
自己尝试 »

您将在接下来的章节中学习更多关于各个数据类型的知识。


×

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.