Observation deleted due to missingness in R
问题 I am busy with a regression model in R and i have about 16 000 observations. One of these observations causes me to get the following error message, (1 observation deleted due to missingness) Is there a way in R so that i can identify this one observation? 回答1: If your data is in a data.frame x , and each row corresponds to an observation, then the way to go about this is to identify complete cases via complete.cases(x) . Conversely, to find missing values in an observation, do ! complete