I am using a deprecated feature from the tidyverse. So a warning is produced that finishes like this:
This warning is displayed once every 8 hours.
Call lifecycle::last_lifecycle_warnings() to see where this
warning was generated.
My question is how to always show the warnings from the tidyverse, not just every 8 hours.
I have seen this solution in Posit Community:
options(lifecycle_verbosity = "warning")
but does not work for me.
The correct spell is:
since
options()expects a string type argument.You can check current state with:
Reference: https://rdrr.io/r/base/options.html