validatetools icon indicating copy to clipboard operation
validatetools copied to clipboard

Results 6 validatetools issues
Sort by recently updated
recently updated
newest added

I'm trying some rules with '&' but when I try to run your functions from {validatetoos} I have an error. Here the example: > rules is_infeasible(rules) Error in A[, v]...

the following conditional is not simplified ```r if (x > 0 & x > 1) y > 0 ``` but can be simplified into ```r if (x > 0) y...

enhancement

```r rules 0 , if (A == "a2") x > 0 ) ``` could be simplified into ```r rules 0 ) ```

enhancement

add an argument to `detect_redundancy` to return the same rules as `simplify_redundancy`.

enhancement

Currently all `simplify_` functions create a new validator object in which origin, description and creation time is renewed. This should be improved into: - non-changed rules should retain original meta...

enhancement

Add a `scan_rules`/detect_rules function that reports on possible improvements on the rule set. This includes: - feasiblity - contradictory rules and their couterparts - redundant rules and their implicators -...

enhancement
question