> complete_data <- data[complete.cases(data),] > rdbwselect(y = complete_data$ALL, x = complete_data$ID, all = TRUE) Error in if (mass_l >= 0.2 | mass_r >= 0.2) { : missing value where TRUE/FALSE needed In addition: Warning messages: 1: In min(X_l) : no non-missing arguments to min; returning Inf 2: In max(X_l) : no non-missing arguments to max; returning -Inf
时间: 2023-07-14 16:12:59 浏览: 174
Data Manipulation with R [eBook]_r_data_
这个错误可能是因为数据集中存在缺失值,导致在执行 `complete.cases` 函数时删除了包含缺失值的行,因此在后续的函数中出现了错误。建议检查数据集中是否存在缺失值,如果存在,可以使用其他方法进行处理,如填充缺失值或者删除包含缺失值的列。另外,也可以尝试使用 `na.action` 参数来处理缺失值,例如使用 `na.omit` 函数。
阅读全文