I’m plotting Torque for different timepoints in R but (https://i.sstatic.net/A2fXkDX8.png)I can’t seem to determine where these 2 duplicated outliers are coming from or how to remove them. They are the 2 black dots in the “pre-m” Timepoint. I imagine some other layer is including outliers but I cant figure out what. Below is my code.
Any help is appreciated.
ggplot(data = match1, aes(x = Time.m.1, y = Rel.Torque.m.1, fill = Time.m.1)) +
sm_raincloud(sep_level = 3, point.params = list(alpha = 1)) +
labs(x = "Timepoints", y = "Relative Torque (Nm/kg)")
I tried removing different layers and seeing if it would go away. I also set the alpha to 0 to see if that was the issue but those data points didn’t correspond to that code.
Hamad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.