feat: bring config file back

This commit is contained in:
2026-04-20 18:50:40 +03:00
parent 7a006f6d6b
commit ac75ab08c2
8 changed files with 84 additions and 35 deletions

View File

@@ -70,10 +70,7 @@ init_val = function(scheme, ns) {
val_is_a_number = function(x) {
# exit if empty
if (is_this_empty_value(x)) {
return(NULL)
}
if (is_this_empty_value(x)) return(NULL)
# хак для пропуска значений
if (x == "NA") return(NULL)
@@ -87,10 +84,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 (is_this_empty_value(x)) return(NULL)
if (x == "NA") return(NULL)
# замена разделителя десятичных цифр