How to Avoid the dplyr Dependency Driven Result Corruption
Win-Vector Blog 2017-12-06
In our last article we pointed out a dangerous silent result corruption we have seen when using the R
dplyr
package with databases.
To systematically avoid this result corruption we suggest breaking up your dplyr::mutate()
statements to be dependency-free (not assigning the same value twice, and not using any value in the same mutate it is formed). We consider these to be key and critical precautions to take when using dplyr
with a database.
We would also like to point out we are also distributing free tools to do this automatically, and a worked example of this solution.