display: Make a display of the graph using the graphics window

Description Usage Arguments Value Author(s) See Also Examples

Description

Uses the package mathgraph to create a simple display of a simple graph

Usage

1

Arguments

x

an object of class simpleGraph-class.

...

further arguments passed to plot.mathgraph.

Value

A display in the grpahics window.

Author(s)

Jens Henrik Badsberg, Claus Dethlefsen, Luca La Rocca

See Also

simpleGraph-class,plot.mathgraph

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
G<-new("incidenceList",
       V=letters[1:12],
       E=list(
              d(6,5,c(2,4),c(1,3)),
              u(2,4,5),
              d(2,4),d(4,2),
              d(1,7),d(3,7),d(4,7),
              d(5,8),d(5,8),d(5,8),
              u(6,9),d(6,9),
              u(9,9),
              d(9,8),d(9,12),
              u(7,8),u(8,12),u(12,11),u(11,7),
              u(11,8),
              d(11,10)
             )
      )

sg <- new("simpleGraph",adjacencyMatrix=as(G,"adjacencyMatrix"))
display(sg)

gg <-new("generalGraph",incidenceList=G)
display(gg)

ClausDethlefsen/giRaph documentation built on May 25, 2019, 1:36 p.m.