79358669

Date: 2025-01-15 14:59:02
Score: 1
Natty:
Report link

I did encounter those known issues regarding the ordering of factors as mentioned by @mnel. I tried geom_path mentioned by @mnel and Matt Bannert, and it works beautifully!

for example, in df1, W, X, and Z are factors, Y is numerical. df1 is sorted by Z

ggplot(df1,aes(X,Y))+
  geom_path(alpha=0)+ # w/o this line, points are not plotted in their order in df1
  geom_jitter(aes(color=Z,fill=Z))+
  facet_wrap('W')
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @mnel
  • User mentioned (0): @mnel
  • Low reputation (0.5):
Posted by: blueskyddd