I am using tis package for a while which is one of my main source for depicting the recession bar in ggplot2. I recently encounter an error in my system while I have been using that. I am not sure it related to updating the some packages or R studio or in my code. I tested the example in package's PDF manual and I got same result. This the code and the related error message that I get:
Error: Summary operations are not defined for quosures.
Do you need to unquote the quosure?
Bad:
range(myquosure)
Good:
range(!!myquosure)
Call rlang::last_error()
to see a backtrace
i do not know what is the error . I would appreciate any advise.