feat: bring config file back
This commit is contained in:
@@ -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)
|
||||
|
||||
# замена разделителя десятичных цифр
|
||||
|
||||
Reference in New Issue
Block a user