Error in if/while (condition) {: missing Value where TRUE/FALSE needed

后端 未结 3 625
[愿得一人]
[愿得一人] 2020-11-21 23:19

I received this error message:

Error in if (condition) { : missing value where TRUE/FALSE needed

or

Error in while (conditi         


        
3条回答
  •  梦毁少年i
    2020-11-21 23:50

    I ran into this when checking on a null or empty string

    if (x == NULL || x == '') {
    

    changed it to

    if (is.null(x) || x == '') {
    

提交回复
热议问题