在 R 编程中转换数据对象的类型 - type.convert()函数
R 语言中的type.convert()
函数用于计算特定数据对象的数据类型。
它可以将数据对象转换为逻辑、整数、数字或因子。
Syntax: type.convert(x)
Parameter:
x: It can be a vector matrix or an array
示例 1:将 type.convert 应用于数字向量
# R program to illustrate
# type.convert to vector of numbers
# create an example vector
x1 <- c("1", "2", "3", "4", "5", "6", "7")
# Apply type.convert function
x1_convert <- type.convert(x1)
# Class of converted data
class(x1_convert)
输出:
[1] "integer"
在上面的代码中,我们可以看到在type.convert()
函数之前所有的数字都存储在其中,但它仍然是一个字符向量。在函数之后,它变成了“整数”。
示例 2:具有字符和整数的向量的类型转换。
# R Program to illustrate
# conversion of a vector with both characters and integers
# create an example vector
x1 <- c("1", "2", "3", "4", "5", "6", "7")
# Create example data
x2 <- c(x1, "AAA")
# Class of example data
class(x2)
# Apply type.convert function
x2_convert <- type.convert(x2)
# Class of converted data
class(x2_convert)
输出:
[1] "character"
[1] "factor"
在这里,在上面的代码中,使用 type.convert()函数后有一些字符和一些整数。因此,输出成为一个因素。