Hello again :)
I see that the nice syntax for rule naming that works below doesn't work when trying to import rules from a .csv or .R
rules <- validator(positive_speed = speed >= 0, ratio = speed/dist <= 1.5)
Is there a cleaner way to define names? Right now I am adding them with names() after importing with validator().
Hello again :) I see that the nice syntax for rule naming that works below doesn't work when trying to import rules from a .csv or .R rules <- validator(positive_speed = speed >= 0, ratio = speed/dist <= 1.5)
Is there a cleaner way to define names? Right now I am adding them with names() after importing with validator().
Thank you