carloscinelli / benford.analysis

Tools that make it easier to use Benford’s law for data validation and forensic analytics.
61 stars 15 forks source link

usage of 'select' and 'except' arguments #48

Closed rafaelslins closed 5 years ago

rafaelslins commented 5 years ago

data(corporate.payment) cp <- corporate.payment$Amount plot(cp, select = "digits", except = "digits") plot(cp, select = "none", except = "all")

carloscinelli commented 5 years ago
carloscinelli commented 5 years ago

Yes, it is simpler to have an argument that overrides the other. In this case, select. The behavior should be documented and also there should be a warning explaining the behavior.