Hi Everyone the following two lines of code give me the desired outcome
missing=with(pima,glucose==0|diastolic==0|triceps==0|bmi==0)
missing=with(pima,missing<-glucose==0|diastolic==0|triceps==0|bmi==0)
However the third line fails
missing=with(pima,missing=glucose==0|diastolic==0|triceps==0|bmi==0)
Could I get the semantics of each of these lines and an explanation of why the third line fails?