1

我的对象具有“字符”类。gg

x <- rep(TRUE,4)
x <- replace(x,3,FALSE)

我现在想将其强制/转换为一个逻辑类。如何更改 x 的类别?

4

1 回答 1

3

我假设你的意思是在你的例子中:

x <- rep("TRUE", 4) 
x <- replace(x, 3, "FALSE")
class(x)
# "character"

在这种情况下尝试:

y <- as.logical(x)
class(y)
# "logical"
于 2012-05-18T18:35:21.440 回答