I manage a R programming environment for a group of users at my company. We often work with sensitive data, and some of my data scientists have started using the reprex package in R.
It's a great little package, but I noticed the package by default uploads images to imgur when you call it. This would be problematic for us if one of our users accidentally uploaded something sensitive.
Would there be a way to change this default for all users perhaps in a Rprofile.site or via some setting in RStudio?
By default, reprex upload the image to imgur by setting
upload.fun()
in knitr.As shown in the man page of
reprex
The example:
Hopes helpful for you.