union_polygon_list: Union one or more polygons

union_polygon_listR Documentation

Union one or more polygons

Description

Union one or more polygons

Usage

union_polygon_list(polygon_list, ...)

Arguments

polygon_list

list object that contains one or more polygons.

...

additional arguments are ignored.

Details

This function takes a list of polygons and iteratively calls polyclip::polyclip(A, B, op="union") to produce a union across one or more polygons, which otherwise only works with two polygons.

Value

object list of polygons

See Also

Other venndir polygons: bbox_polygon_list(), eulerr_to_polygon_list(), get_largest_polygon_list(), get_venn_polygon_shapes(), intersect_polygon_list(), labelr_polygon_list(), minus_polygon_list(), nudge_polygon_coords(), nudge_polygon_list(), plot_polygon_list(), polygon_areas(), polygon_circles(), polygon_ellipses(), polygon_list_labelr(), polygon_list_to_xy_list(), rescale_polygon_list(), simple_ellipse(), xy_list_to_polygon_list()

Examples

counts <- c(A=1, B=2, `A&B`=3)
x <- eulerr::euler(counts)
polygon_list <- eulerr_to_polygon_list(x)

circle_union <- union_polygon_list(polygon_list);
jamba::ssdim(circle_union)
circle_colors <- colorjam::rainbowJam(2);
plot_polygon_list(polygon_list, col=circle_colors, main="union")
plot_polygon_list(circle_union, col="#FFDD0088", border="red", lwd=3, add=TRUE)

counts2 <- c(A=1, B=2, `A&B`=3, C=4)
x2 <- eulerr::euler(counts2)
polygon_list2 <- eulerr_to_polygon_list(x2)
plot_polygon_list(polygon_list2)


jmw86069/venndir documentation built on June 15, 2024, 1:52 p.m.