service.count_lowerequal_threshhold {kidney.epi} | R Documentation |
Count how many values are less or equal than the defined threshhold.
service.count_lowerequal_threshhold(x, threshhold)
x |
the vector to be checked. |
threshhold |
numeric the threshhold to compare with. |
Count how many values are less or equal than the defined threshhold.
Programming: Boris Bikbov boris@bikbov.ru.
numeric returns number of numeric values less or equal to the threshhold.
myvals <- c(1, 8, -5, "oggi", NA)
myvals2 <- service.count_lowerequal_threshhold(myvals, 0)
myvals2 # 1