标签: r dataframe
是否有命令检查并仅返回仅为字符的列? 我知道str(data_frame)返回数据框中所有列的结构。
str(data_frame)
答案 0 :(得分:3)
我们可以使用Filter
Filter
base R
Filter(is.character, df1)
df1 <- data.frame(col1 = LETTERS[1:5], col2 = LETTERS[6:10], col3 = 1:5, stringsAsFactors = FALSE)