Nothing
#' Create small multiples based on edge attributes
#'
#' This function is equivalent to [ggplot2::facet_wrap()] but only
#' facets edges. Nodes are repeated in every panel.
#'
#' @inheritParams ggplot2::facet_wrap
#'
#' @family ggraph-facets
#'
#' @examples
#' gr <- tidygraph::as_tbl_graph(highschool)
#'
#' ggraph(gr) +
#' geom_edge_link() +
#' geom_node_point() +
#' facet_edges(~year)
#' @export
#'
facet_edges <- function(facets, nrow = NULL, ncol = NULL, scales = 'fixed',
shrink = TRUE, labeller = 'label_value', as.table = TRUE,
switch = deprecated(), drop = TRUE, dir = 'h',
strip.position = 'top') {
# Work around non-lifecycle deprecation
if (!lifecycle::is_present(switch) && utils::packageVersion('ggplot2') <= '3.3.6') {
switch <- NULL
}
facet <- facet_wrap(
facets = facets, nrow = nrow, ncol = ncol,
scales = scales, shrink = shrink, labeller = labeller,
as.table = as.table, switch = switch, drop = drop,
dir = dir, strip.position = strip.position
)
seed <- sample(.Machine$integer.max, 1L)
facet$params$facets[] <- lapply(seq_along(facet$params$facets), function(i) {
rlang::quo(withr::with_seed(seed, !!facet$params$facets[[i]]))
})
ggproto(NULL, FacetEdges,
shrink = shrink,
params = facet$params
)
}
#' @rdname ggraph-extensions
#' @format NULL
#' @usage NULL
#' @export
FacetEdges <- ggproto('FacetEdges', FacetWrap,
compute_layout = function(data, params) {
plot_data <- data[[1]]
data <- split(data, vapply(data, data_type, character(1)))
facet_data <- data$edge_ggraph
panels <- FacetWrap$compute_layout(facet_data, params)
node_placement <- rep(list(plot_data$.ggraph.index), nrow(panels))
names(node_placement) <- as.character(seq_along(node_placement))
attr(panels, 'node_placement') <- node_placement
panels
},
map_data = function(data, layout, params) {
switch(
data_type(data),
node_ggraph = {
node_map <- rep(list(data), length(attr(layout, 'node_placement')))
panel <- rep(seq_along(node_map), vapply(node_map, nrow, numeric(1)))
node_map <- vec_rbind(!!!node_map)
node_map$PANEL <- factor(panel, levels = levels(layout$PANEL))
node_map
},
edge_ggraph = , {
FacetWrap$map_data(data, layout, params)
}
)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.