jwilmer

Results 1 issues of jwilmer

geom_sina introduces a nontrivial amount of y jitter (aka inaccuracy in plotted data values). **See this reprex:** library(ggforce) a=c(1,2,3,4,5); b=c(1,1,1,1,1); data=tibble(a=a,b=b); ggplot(data,aes(x=b,y=a)) + geom_sina() I have not been able to...