Remove deprecated functions

This commit is contained in:
2024-10-08 16:50:18 -04:00
parent 598e09d25c
commit 8439235de4

View File

@@ -1754,20 +1754,3 @@ main <- function() {
})
}
main()
# For generate_scatter_plot()
# # Add rectangles if specified
# if (!is.null(config$rectangles)) {
# for (rect in config$rectangles) {
# plot <- plot + annotate(
# "rect",
# xmin = rect$xmin,
# xmax = rect$xmax,
# ymin = rect$ymin,
# ymax = rect$ymax,
# fill = ifelse(is.null(rect$fill), NA, rect$fill),
# color = ifelse(is.null(rect$color), "black", rect$color),
# alpha = ifelse(is.null(rect$alpha), 0.1, rect$alpha)
# )
# }
# }