基函数 as.factor() 不是泛型函数,但 forcats::as_factor() 是泛型函数。 Haven 为 labelled() 和labelled_spss() 向量和数据帧提供了 as_factor() 方法。默认情况下,当应用于 DataFrame 时,它仅影响带标签的列。 用法 # S3 method for data.frame as_factor(x, ..., only_labelled = TRUE) # S3 ...
R forcats as_factor 将输入转换为因子与基本 R 相比,当 x 是字符时,此函数按照它们出现的顺序创建关卡,这在每个平台上都是相同的。 (基本 R 按当前语言环境进行排序,该语言环境可能因位置而异。)当 x 为数字时,排序基于数字值并与基本 R 一致。 用法 as_factor(x, ...) # S3 method for factor as_...