Specifying jitter width is not working with visualisation_recipe
dana-and-monsters opened this issue · 0 comments
dana-and-monsters commented
There is an example in the documentation of visualisation_recipe along the lines of this:
x <- estimate_means(lm(Sepal.Width ~ Species, data = iris))
# Customize aesthetics
layers <- visualisation_recipe(x,
jitter = list(width = 0.03, color = "red")
plot(layers)
However I cannot adjust jitter width with this. I found a way to adjust jitter for now with the following:
layers<-visualisation_recipe(x, show_data = "point", point = list(position = position_jitter(width = .03))
plot(layers)
- I am using this with estimation_relation instead of estimate_means