Skip to content

Commit

Permalink
Fixed plotting of Intensity ratio: outlier filter was removing points…
Browse files Browse the repository at this point in the history
… from Jitter plot
  • Loading branch information
schmiedc committed Feb 15, 2024
1 parent 8ac7709 commit 77f06ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plot_intensity_ratio.R
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ plot_intensity_ration <- function(dataFrame, name, directory) {
ylab("I perinculear / I peripheral") +
geom_boxplot(outlier.size = 0, outlier.shape = NA, na.rm=TRUE) +
stat_boxplot(geom = 'errorbar', width = 0.2, na.rm=TRUE) +
scale_y_continuous(limits = quantile(dataFrame$intensity_ratio, c(0.1, 0.9))) +
# scale_y_continuous(limits = quantile(dataFrame$intensity_ratio, c(0.1, 0.9))) +
geom_jitter(width = 0.1, na.rm=TRUE) +
boxplot_theme()

Expand Down

0 comments on commit 77f06ad

Please sign in to comment.