InteractiveIGraph: Interactive igraph

Description Usage Arguments Details Value Warning Note Author(s) See Also Examples

Description

Interactive igraph - it creates opportunity to work with igraph interactively. It enables user to analyse graph properties and structure. It is possible to change graph it self or customise it appearance.

Please see doc/Illustrations.pdf for short graphical illustration of this function.

Usage

1
2
3
4
5
6
7
8
9
InteractiveIGraph(g, ...)

InteractiveIGraph.Constructor(g, ...)

## S3 method for class 'InteractiveIGraph'
plot(x, ...)

## S3 method for class 'InteractiveIGraph'
as.igraph(x, KeepAttr = NULL, ...)

Arguments

g, x

an object of the class InteractiveIGraph.

KeepAttr

by default all special InteractiveIGraph attributes are deleted during transformation. User might keep them if required.

...

further arguments. See details and examples.

Details

Before running InteractiveIGraph firstly you should create simple igraph object. Later on, you must be sure you are running correct screen device. InteractiveIGraph works only on window and X11(type = "Xlib") screen devices, therefore if working with RStudio (or smth.) you should activate one of the correct devices.

After running the function, you can play around by using computer mouse directly on screen device. You can grab vertex (or group if them), move it, change any attributes. You may even create, or delete vertices and edges. If you want to save the results, press key <s> - it will dump object to text file. More over you can save the picture by presing <Ctrl-B> or press <q>, that stands for 'quite' - it will end the interaction program and assign the last value of the object to predefined variable. See examples.

Keyboard is active if the graphical device is active. To apply the command you just need to know a hot-key. While ruining InteractiveIGraph you may press <m> that stands for 'menu' and all the list will be printed in the console. The list of commands are kept in CommandList. This list might by modified by user, therefore, any functionality might my easily added by creating new hot-key in the CommandList. You can find out almost all the commands by exploring CommandList (run function PrintCommandList). For example if you want to see minimum.spanning.tree of your graph you should pres button <t> while running InteractiveIGraph. You may see how this is realized with the command CommandList[["t"]]

There are some special features, that user might found interesting:

It should be notice that there are several modes, that influence the output of commands. All modes might by seen in console by pressing <M>. Main modes are:

If you are in the mode that you don't want to be, press <Esc> - it will restore default.

In ... you may specify many parameters form igraph, namely: 'layout' 'xlim', 'ylim', 'main', 'sub', 'axes', 'xlab', 'ylab' , 'add'. User may specify the margins with parameter 'mar'. Any vertex or edge parameters should be add via V and E.

User may also specify its own Adjustment Functions, namely 'PlotAdjustment', 'BottomMenuAdjustment', 'ExtraInfo'.

And there is special attribute 'MainMenu' - this allows to create any menu that show by pressing right mouse button.

By default a very simple Menu is created. Menu is a list with special structure you can explore it with graph$Menu$MenuList$MainMenu. Unfortunately, this part is in developing stage - it is now OK to make it work, but not to be user-friendly.

Value

An object of the class InteractiveIGraph. It is the extension of the igraph with special attributes.

Warning

The function is tested only in windows (sorry for that).

Sometimes the program crashes. Most often it crashes while assigning wrong attributes values. For example if trying to assign color attribute with command 'color="gree"' instead of 'color="green"' it will crash, because there are no color "gree". It is very hard to make system flexible and safe - wherefore be sure assigning correct values. It should me mentioned that in very rare moments the reasons of crashing are not identified, thence it is recommended from time to time to press 'ctrl-S' - it will dump current graph to text file - thus you work wont be lost.

Note

This package is based on igraph, grDevices packages, therefore it has their advantages and disadvantages.

First of all, InteractiveIGraph works only on Windows and X11(type = "Xlib") screen devices, therefore if working with RStudio yous should activate one of the devices. Secondly, with the large graphs, reploting becomes really annoying, so, it is really for small graphs. On the other hand customising large graphs in console might my even more annoying.

Author(s)

Vygantas Butkus

See Also

CommandList, Adjustment Functions.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
# this is a regular igraph object
gOrg <- erdos.renyi.game(15, 1/10,  directed = TRUE)
plot(gOrg) 

# this is an 'InteractiveIGraph' object, up till now there is not much difference. Just some extra attributes.
g = InteractiveIGraph.Constructor(gOrg)
g = plot(g) 

# now it is interactive. Please enjoy :)
if(interactive()){
  g = InteractiveIGraph(gOrg)
}
# p.s. if you want to save changes please press 'q' while ruining InteractiveIGraph().

# Select some vertices and apply commands, for example 'a', 'A', or 'g', 'b'.
# you may change any attributes by key 'ctrl-F' and then typing attributes command, 
# for example 'color="green"'
# (it will work only on selected vertices).

# you may run any command by key 'ctrl-C' and typing command, for example 'print(V(g)$name)'

# with key 's' you can change selection mode - in this way you can select multiple vertices. 

InteractiveIGraph documentation built on May 2, 2019, 2:08 a.m.