'as' 在 R 中是什么意思?

What does 'as' mean in R?

as

中是什么意思
as.numeric(T)

variable <- as.data.frame('midwest')`

P.S。如果你愿意解释缩写会更好...

这意味着您希望将一个对象转换为给定类型的另一个对象。

如果我有 x <- 1 它是一个数字,因此它具有数字属性(例如,可以求和为 1 并变成 2,如 x + 1 中)。当您使用 as.character(x) 时,您基本上将 1(数字)转换为“1”,这是一个 "string" 类型的对象。等等。例如,您可以使用 as.data.frame() 将矩阵转换为数据帧,使用 as.matrix() 相反。

希望对您有所帮助。