Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 R 数据框,其中包含一些存储为数字但实际上是分类的变量。如何将现有数据框的一个特定列的数据类型从数字转换为因子?
您可以使用:
dat$col <- as.factor(dat$col)
dat数据框col的名称和列的名称在哪里。
dat
col