
Trustworthiness
David Spiegelhalter has written in several places about trust in algorithms e.g. Harvard Data Science Review, Should We Trust Algorithms?, David Spiegelhalter, Jan 31, 2020, DOI: 10.1162/99608f92.cb91a35a.
The general idea is that we shouldn’t think just about trust in algorithms but also trustworthiness. He provides a checklist of questions he would like to ask:
- Is it any good when tried in new parts of the real world?
- Would something simpler, and more transparent and robust, be just as good?
- Could I explain how it works (in general) to anyone who is interested?
- Could I explain to an individual how it reached its conclusion in their particular case?
- Does it know when it is on shaky ground, and can it acknowledge uncertainty?
- Do people use it appropriately, with the right level of skepticism?
- Does it actually help in practice?
Excel vs R
A common criticism, I’ve heard for both sides of the argument, is that R/ Excel is not trusted because it is not clear how the model has been implemented. Excel users claim the WYSIWG interface is transparent and the R users claim that it is exactly this interface that make interrogating the model and testing it difficult and so not transparent.
Can we use David Spiegelhalter’s ideas to compare Excel and R for doing HTA?
The previous list is to do with the underlying algorithm, the data they’re used on and how the results are used. There is no mention of the implementation which is what we are interested in here.
So, borrowing from above, a possible Excel vs R check list could be:
- Is it able to simply implement a given model?
- Can someone easily understand the implementation (against the mathematical description)?
- Is the flow through the model clear?
- Are there tests and checks built in to the model?
- Are the inputs constrained or errors produced for bad values?
Of course, these elements are interrelated. If a model is easy to implement in software then it is more likely to be easy to understand and to follow its pipeline. So there is an assumption that the model builder has implemented the model in the best(ish) way appropriate for that software.
There are other benefit to using R, such as speed, extensibility and reuse but these aren’t directly linked to trustworthiness.