Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • "assert inrange(var1,1,5)" and "assert inrange(var1,1,5)&!missing(var1)"

    What's the difference between "assert inrange(var1,1,5)" and "assert inrange(var1,1,5)&!missing(var1)"?If all values in var1 is between 1 and 5,var1 does contain no missing values.Why is there someone using the 2nd sentence?Can anyone say it clearly?


  • #2
    If a value is between 1 and 5 it can't also be missing. There is no point to the second condition, but it does no harm either.

    Comment


    • #3
      Thanks!

      Comment

      Working...
      X