refactor: cleaning and polishing

This commit is contained in:
2026-04-24 14:26:24 +03:00
parent 4b05fbafc2
commit 87444b5718
8 changed files with 69 additions and 62 deletions

View File

@@ -71,6 +71,7 @@ val_is_a_number = function(x) {
# exit if empty
if (is_this_empty_value(x)) return(NULL)
# хак для пропуска значений
if (x == "NA") return(NULL)
@@ -82,7 +83,7 @@ val_is_a_number = function(x) {
## находится ли число в заданном диапазоне значений -------
val_number_within_a_range = function(x, ranges) {
# exit if empty
if (is_this_empty_value(x)) return(NULL)
if (x == "NA") return(NULL)