This PR tweaks the way the vrb argument is parsed for plot_trace(). In particular, it makes the function work when an external object is supplied as the function argument. In such cases, the object name will need to be unquoted using !!. I've attempted to align the implementation with standard Tidy Evaluation principles. Hence, requiring the !!-based unquoting rather than adjusting plot_trace() to gobble up all sensible inputs.
The documentation and unit tests should reflect the relevant changes.
This PR tweaks the way the
vrb
argument is parsed forplot_trace()
. In particular, it makes the function work when an external object is supplied as the function argument. In such cases, the object name will need to be unquoted using!!
. I've attempted to align the implementation with standard Tidy Evaluation principles. Hence, requiring the!!
-based unquoting rather than adjustingplot_trace()
to gobble up all sensible inputs.The documentation and unit tests should reflect the relevant changes.
This PR should fix #145.