我有一个角色矢量:
A <- c("terrestrial human",
"animal 7 planet",
"geographic 23 locations",
"discovery kids")
我想将它分成两个向量:一个包含所有包含数字的条目,另一个包含没有任何数字的数据。
v1 <- c("animal 7 planet","geographic 23 locations")
v2 <- c("terrestrial human","discovery kids")
答案 0 :(得分:1)
我冒昧地将Matrix A
声称为A
的向量,因为它似乎是一维的 -
A[!grepl(x = A, pattern = '[[:digit:]]')]
A[grepl(x = A, pattern = '[[:digit:]]')]