SyntaxFix
Write A Post
Hire A Developer
Questions
this works with "NA" not for NA
"NA"
NA
comments = c("no","yes","NA") for (l in 1:length(comments)) { #if (!is.na(comments[l])) print(comments[l]) if (comments[l] != "NA") print(comments[l]) }