gpt4 book ai didi

r - 在因子变量上使用 nchar 函数

转载 作者:行者123 更新时间:2023-12-02 07:07:33 26 4
gpt4 key购买 nike

有人可以向我解释这里发生了什么吗?当变量被编码为因子并且 nchar 强制转换为字符时,为什么该函数不能有效地计算字符数?

> x <- c("73210", "73458", "73215", "72350")
> nchar(x)
[1] 5 5 5 5
>
> x <- factor(x)
> nchar(x)
[1] 1 1 1 1
>
> nchar(as.character(x))
[1] 5 5 5 5

谢谢。

最佳答案

这是因为有一个因子,你的数据用1、2等表示。你的意思是计算级别的字符:

> nchar(levels(x)[x])
[1] 5 5 5 5

关于r - 在因子变量上使用 nchar 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9320833/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com