我的数据框中的变量有字符观察(不确定这是否是正确的表达方式,基本上数据列为" chr"当我拉出结构时)。
我想首先将所有内容转换为因子,然后检查因子级别的数量。一旦它们成为因素,我只想继续使用具有两个或更多级别的数据框中的变量。
到目前为止,这是我的想法。我知道for
循环在R中是一种禁忌,但我很新,我使用它是有道理的。
x = as.character(c("Not Sampled", "Not Sampled", "Y", "N"))
y = as.character(c("Not Sampled", "Not Sampled", "Not Sampled", "Not Sampled"))
z = as.character(c("Y", "N", "Not Sampled", "Y"))
df = data.frame(x, y, z)
for i in df:
df$Response = as.factor(df[,i]) #create new variable in dataframe
df$Response = df@data[sapply .... #where I think I can separate out the variables I want and the variables I don't want
m1 = lm(response ~ 1) #next part where I want only the selected variables
我知道解决方案可能要复杂得多,但这是我初出茅庐的尝试。
答案 0 :(得分:4)
默认的data.frame方法将字符串转换为因子,因此在这种情况下不需要额外的转换。 lapply
对于级别比较更好,因为如果长度相同,sapply
将尝试简化矩阵的返回值。
df = data.frame(x, y, z)
## Already factors, use sapply(df, typeof) to see underlying representation
sapply(df, class)
# x y z
# "factor" "factor" "factor"
## These are the indicies with > 2 levels
lengths(lapply(df, levels)) > 2
# x y z
# TRUE FALSE TRUE
## Extract only those columns
df[lengths(lapply(df, levels)) > 2]
答案 1 :(得分:3)
df[, sapply(df, function(x) length(levels(x)) >= 2)]
答案 2 :(得分:2)
library(dplyr)
df <- df %>% lapply(factor) %>% data.frame()
df[ , sapply(df, n_distinct) >= 2]