I have full dataframe. I want using loop check each value of var1 variable, if his value is missing or not. If his value is missing i want to do some actions.
I know that i can check var1 is missing by using is.na function.
for (row in 1:nrow(full)) {
if (var1[row] is missing)) {
............
}
else {
............
}
}
Thank you