library(beadplexr)
library(ggplot2)
data("lplex")
lplex[[1]] |>
ggplot() +
aes(x = `FL6-H`, y = `FL2-H`) +
geom_point()
lplex[[1]] |>
despeckle(.parameters = c("FL6-H", "FL2-H"), .neighbours = 8) |>
ggplot() +
aes(x = `FL6-H`, y = `FL2-H`) +
geom_point()
lplex[[1]] |>
despeckle(.parameters = c("FL6-H", "FL2-H"), .bin = 128) |>
ggplot() +
aes(x = `FL6-H`, y = `FL2-H`) +
geom_point()
Run the code above in your browser using DataLab