if/while(조건) {: TRUE/FALSE가 필요한 값 누락 다음 오류 메시지를 받았습니다. Error in if (condition) { : missing value where TRUE/FALSE needed 또는 Error in while (condition) { : missing value where TRUE/FALSE needed 그것은 무엇을 의미하며 어떻게 예방합니까?의 평가condition결과적으로NA.그if조건부는 다음 중 하나를 가져야 합니다.TRUE또는FALSE결과. if (NA) {} ## Error in if (NA) { : missing value where TRUE/FALSE needed 이는 계산 결과로 인해 실수로 발생할 수 있습니다. if(TRUE && sqrt(-1)..