4343# ' @return A list of graph attributes, or a single graph attribute.
4444# '
4545# ' @aliases get.graph.attribute graph.attributes
46- # ' @family graph attributes
46+ # ' @family attributes
4747# '
4848# ' @export
4949# ' @examples
@@ -72,7 +72,7 @@ graph_attr <- function(graph, name) {
7272# ' @return The graph, with the attribute(s) added.
7373# '
7474# ' @aliases graph.attributes<-
75- # ' @family graph attributes
75+ # ' @family attributes
7676# '
7777# ' @export
7878# ' @examples
@@ -102,7 +102,7 @@ graph_attr <- function(graph, name) {
102102# ' @param value New value of the attribute.
103103# ' @return The graph with the new graph attribute added or set.
104104# '
105- # ' @family graph attributes
105+ # ' @family attributes
106106# ' @aliases set.graph.attribute
107107# '
108108# ' @export
@@ -152,7 +152,7 @@ graph.attributes <- function(graph) {
152152# ' all vertex attributes, if `name` is missing.
153153# '
154154# ' @aliases get.vertex.attribute vertex.attributes
155- # ' @family graph attributes
155+ # ' @family attributes
156156# '
157157# ' @export
158158# ' @examples
@@ -197,7 +197,7 @@ vertex_attr <- function(graph, name, index = V(graph)) {
197197# ' @return The graph, with the vertex attribute(s) added or set.
198198# '
199199# ' @aliases vertex.attributes<-
200- # ' @family graph attributes
200+ # ' @family attributes
201201# '
202202# ' @export
203203# ' @examples
@@ -229,7 +229,7 @@ vertex_attr <- function(graph, name, index = V(graph)) {
229229# ' @return The graph, with the vertex attribute added or set.
230230# '
231231# ' @aliases set.vertex.attribute
232- # ' @family graph attributes
232+ # ' @family attributes
233233# '
234234# ' @export
235235# ' @examples
@@ -363,7 +363,7 @@ vertex.attributes <- function(graph, index = V(graph)) {
363363# ' edge attributes if `name` is missing.
364364# '
365365# ' @aliases get.edge.attribute edge.attributes
366- # ' @family graph attributes
366+ # ' @family attributes
367367# '
368368# ' @export
369369# ' @examples
@@ -407,7 +407,7 @@ edge_attr <- function(graph, name, index = E(graph)) {
407407# ' @return The graph, with the edge attribute(s) added or set.
408408# '
409409# ' @aliases edge.attributes<-
410- # ' @family graph attributes
410+ # ' @family attributes
411411# '
412412# ' @export
413413# ' @examples
@@ -439,7 +439,7 @@ edge_attr <- function(graph, name, index = E(graph)) {
439439# ' @return The graph, with the edge attribute added or set.
440440# '
441441# ' @aliases set.edge.attribute
442- # ' @family graph attributes
442+ # ' @family attributes
443443# '
444444# ' @export
445445# ' @examples
@@ -567,7 +567,7 @@ edge.attributes <- function(graph, index = E(graph)) {
567567# ' @return Character vector, the names of the graph attributes.
568568# '
569569# ' @aliases list.graph.attributes attributes
570- # ' @family graph attributes
570+ # ' @family attributes
571571# '
572572# ' @export
573573# ' @examples
@@ -590,7 +590,7 @@ graph_attr_names <- function(graph) {
590590# ' @return Character vector, the names of the vertex attributes.
591591# '
592592# ' @aliases list.vertex.attributes
593- # ' @family graph attributes
593+ # ' @family attributes
594594# '
595595# ' @export
596596# ' @examples
@@ -617,7 +617,7 @@ vertex_attr_names <- function(graph) {
617617# ' @return Character vector, the names of the edge attributes.
618618# '
619619# ' @aliases list.edge.attributes
620- # ' @family graph attributes
620+ # ' @family attributes
621621# '
622622# ' @export
623623# ' @examples
@@ -643,7 +643,7 @@ edge_attr_names <- function(graph) {
643643# ' @return The graph, with the specified attribute removed.
644644# '
645645# ' @aliases remove.graph.attribute
646- # ' @family graph attributes
646+ # ' @family attributes
647647# '
648648# ' @export
649649# ' @examples
@@ -673,7 +673,7 @@ delete_graph_attr <- function(graph, name) {
673673# ' @return The graph, with the specified vertex attribute removed.
674674# '
675675# ' @aliases remove.vertex.attribute
676- # ' @family graph attributes
676+ # ' @family attributes
677677# '
678678# ' @export
679679# ' @examples
@@ -704,7 +704,7 @@ delete_vertex_attr <- function(graph, name) {
704704# ' @return The graph, with the specified edge attribute removed.
705705# '
706706# ' @aliases remove.edge.attribute
707- # ' @family graph attributes
707+ # ' @family attributes
708708# '
709709# ' @export
710710# ' @examples
@@ -809,6 +809,7 @@ is_weighted <- function(graph) {
809809}
810810
811811# ' @rdname make_bipartite_graph
812+ # ' @family bipartite
812813# ' @export
813814is_bipartite <- function (graph ) {
814815 if (! is_igraph(graph )) {
@@ -895,6 +896,7 @@ igraph.i.attribute.combination <- function(comb) {
895896# ' new edge should be sum of the weights of the corresponding edges in the old
896897# ' graph; and that the rest of the attributes should be ignored (=dropped).
897898# '
899+ # ' @family attributes
898900# ' @name igraph-attribute-combination
899901# ' @aliases attribute.combination
900902# ' @section Predefined combination functions: The following combination
971973# ' @method $ igraph
972974# ' @name igraph-dollar
973975# ' @export
974- # ' @family graph attributes
976+ # ' @family attributes
975977# ' @examples
976978# ' g <- make_ring(10)
977979# ' g$name
0 commit comments