Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add geom_dag_label() #116

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export(geom_dag_edges_arc)
export(geom_dag_edges_diagonal)
export(geom_dag_edges_fan)
export(geom_dag_edges_link)
export(geom_dag_label)
export(geom_dag_label_repel)
export(geom_dag_node)
export(geom_dag_point)
Expand Down
1 change: 0 additions & 1 deletion R/StatsandGeoms.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ GeomDagText <- ggplot2::ggproto("GeomDagText", ggplot2::GeomText, default_aes =
vjust = 0.5, alpha = NA, family = "", fontface = "bold", lineheight = 1.2
))


StatEdgeLink <- ggplot2::ggproto("StatEdgeLink", ggraph::StatEdgeLink,
setup_data = function(data, params) {
data <- data[!is.na(data$xend), ]
Expand Down
75 changes: 75 additions & 0 deletions R/geom_dag.R
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,81 @@ geom_dag_text <- function(mapping = NULL, data = NULL,
)
}

#' Node text labels
#'
#' @inheritParams ggplot2::geom_label
#'
#' @section Aesthetics:
#' `geom_dag_label` understand the following aesthetics (required aesthetics are in bold):
#'
#' - **x**
#' - **y**
#' - **label**
#' - alpha
#' - angle
#' - colour
#' - family
#' - fontface
#' - group
#' - hjust
#' - lineheight
#' - size
#' - vjust
#'
#' @export
#'
#' @examples
#' library(ggplot2)
#' library(ggraph)
#' g <- dagify(m ~ x + y, y ~ x)
#'
#' ggdag(g, text = FALSE) + geom_dag_label()
#'
#' g %>%
#' tidy_dagitty() %>%
#' ggplot(aes(x = x, y = y, xend = xend, yend = yend)) +
#' geom_dag_edges(aes(
#' start_cap = label_rect(name, padding = margin(2.5, 2.5, 2.5, 2.5, "mm")),
#' end_cap = label_rect(name, padding = margin(2.5, 2.5, 2.5, 2.5, "mm"))
#' )) +
#' geom_dag_label(size = 5, fill = "black", color = "white") +
#' theme_dag()
geom_dag_label <- function(mapping = NULL, data = NULL,
stat = "identity", position = "identity",
...,
parse = FALSE,
nudge_x = 0,
nudge_y = 0,
check_overlap = FALSE,
na.rm = FALSE,
show.legend = NA,
inherit.aes = TRUE) {
if (!missing(nudge_x) || !missing(nudge_y)) {
if (!missing(position)) {
stop("Specify either `position` or `nudge_x`/`nudge_y`", call. = FALSE)
}

position <- ggplot2::position_nudge(nudge_x, nudge_y)
}

if (is.null(mapping)) mapping <- ggplot2::aes(label = name)
if (is.null(mapping$label)) mapping$label <- substitute(name)

ggplot2::layer(
data = data,
mapping = mapping,
stat = StatNodes,
geom = ggplot2::GeomLabel,
position = position,
show.legend = show.legend,
inherit.aes = inherit.aes,
params = list(
parse = parse,
na.rm = na.rm,
...
)
)
}

#' Repulsive textual annotations
#'
Expand Down
2 changes: 2 additions & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ SEM
Undirected
acyclic
aes
algorithmically
bb
behaviour
bidirected
Expand All @@ -31,6 +32,7 @@ dagitty
de
dendogram
df
dplyr
edx
fontface
generalizability
Expand Down
123 changes: 123 additions & 0 deletions man/geom_dag_label.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 72 additions & 0 deletions tests/testthat/_snaps/geom_dag/geom-dag-label-labels.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions tests/testthat/test-geom_dag.R
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,21 @@ test_that("different edge types work", {
expect_doppelganger("geom_dag_edges_diagonal() is arcy", p + geom_dag_edges_diagonal())
expect_doppelganger("geom_dag_edges_fan() is fany", p + geom_dag_edges_fan())
})
test_that("labels also work", {
g <- dagify(m ~ x + y,
y ~ x,
exposure = "x",
outcome = "y",
latent = "m",
labels = c("x" = "Exposure", "y" = "Outcome", "m" = "Collider")
)

p1 <- g %>%
tidy_dagitty() %>%
ggplot(aes(x = x, y = y, xend = xend, yend = yend)) +
geom_dag_edges() +
geom_dag_point() +
geom_dag_label(aes(label = label))

expect_doppelganger("geom_dag_label() labels", p1)
})