この質問に対する答えは、「空白」に見える文字列に含まれる可能性のある種類のものについて、どの程度妄想的になりたいかによって異なります。これは、長さゼロの空白文字列""
と、1 つ以上の[[:space:]]
文字 (つまり、「タブ、改行、垂直タブ、フォーム フィード、キャリッジ リターン、スペース、および場合によってはその他のロケール依存文字」) で構成される任意の文字列に一致する、かなり慎重なアプローチです。 、?regex
ヘルプページによると)。
## An example data.frame containing all sorts of 'blank' strings
df <- data.frame(A = c("a", "", "\n", " ", " \t\t", "b"),
B = c("b", "b", "\t", " ", "\t\t\t", "d"),
C = 1:6)
## Test each element to see if is either zero-length or contains just
## space characters
pat <- "^[[:space:]]*$"
subdf <- df[-which(names(df) %in% "C")] # removes columns not involved in the test
matches <- data.frame(lapply(subdf, function(x) grepl(pat, x)))
## Subset df to remove rows fully composed of elements matching `pat`
df[!apply(matches, 1, all),]
# A B C
# 1 a b 1
# 2 b 2
# 6 b d 6
## OR, to remove rows with *any* blank entries
df[!apply(matches, 1, any),]
# A B C
# 1 a b 1
# 6 b d 6