graph.famous {igraph}R Documentation

Creating named graphs

Description

There are some famous, named graphs, sometimes counterexamples to some conjecture or unique graphs with given features. These can be created with this function

Usage

graph.famous(name)

Arguments

name Character constant giving the name of the graph. It is case insensitive.

Details

graph.famous knows the following graphs:

Value

A graph object.

Author(s)

Gabor Csardi csardi@rmki.kfki.hu

See Also

graph can create arbitrary graphs, see also the other functions on the its manual page for creating special graphs.

Examples

solids <- list(graph.famous("Tetrahedron"),
               graph.famous("Cubical"),
               graph.famous("Octahedron"),
               graph.famous("Dodecahedron"),
               graph.famous("Icosahedron"))

[Package igraph version 0.5.2 Index]