importance_igraph: Graphically represent the (co-)occurrences of a set of...

Description Usage Arguments Details Value Author(s) Examples

Description

Graphically represent the (co-)occurrences of a set of features which are derived from a bootstrapped feature selection with doBS. Shows how often a feature occurs during classification bootstrapping and how often features occur together during the bootstrapping.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
importance_igraph(phi, main = "", 
        highlight = NULL,layout="layout.ellipsis",
		pdf=NULL, pointsize=12, tk=FALSE,
		## provide an intuitive way of filtering
		node.filter=NULL, ## show all nodes by default
		edge.filter=10, ## only edges with more than 10 occurences
		node.color="grey", edge.color="#000000AA",
		vlabel.cex=0.6, vlabel.cex.min=0.5, vlabel.cex.max=4, max_node_cex=8,
        edge.width=1, max_edge_cex=6, ewprop=3)
        






 

Arguments

phi

An adjacency matrix. Nonzero values indicate connections between the features specified in the column and row names.

main

Character. The title to be plotted.

highlight

Vector of feature names which should be highlighted in red.

layout

Which layout to choose. Can be a matrix with the x and y coordinates for each node or a layout function (e.g. layout.circle etc.) or layout.ellipsis, in which case an egg-shaped graph is drawn.

pdf

Path were to store the graph in pdf format.

pointsize

Pointsize argument for the pdf device function. Used when pdf is set.

tk

Make tk-plot.

node.color

Color of the nodes.

edge.color

Color of the edges.

node.filter

Only show nodes with frequency greater than or equal node.filter. Nodes with smaller frequency will be plotted very small.

vlabel.cex

Expansion factor for node labels.

vlabel.cex.min

Minimal node expansion factor. Set to very small value, e.g. 0.01 to make node labels to disappear nearly completely.

vlabel.cex.max

Maximal node expansion factor. Used to prevent plotting of overly sized node labels. A value of 4 seems to be reasonable.

max_node_cex

Maximum node size.

edge.width

Edge width parameter. Used as basis edge width for the calculation of the edge widths when weights are supplied. Otherwise, it determines the edge width for all edges.

edge.filter

Integer. Only show edges with weight larger than filter.

max_edge_cex

Maximum edge expansion factor. The edge with the highest frequency in weights will be plotted using this factor. All other edge widths are scaled appropriately.

ewprop

Edge width proportionality factor. Used when scaling the edge widths proportional to the frequency given in weights. A value of 1 means that edge width are scaled down with decreasing frequency in a linear fashion, a value of 2 means quadratic scaling, 3 means cubic scaling etc. Thus, ewprop controls how fast edges become thinner.

Details

This function creates an egg shaped plot of the nodes and their occurrences during the bootstrapping feature selection. The larger the nodes, the more often they occur. Edges indicate nodes which occur together in a feature set. The thicker the edge, the more often the two adjacent nodes occur together during the bootstrapping.

Value

The igraph object and layout.

Author(s)

Christian Bender (christian.bender@tron-mainz.de)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Not run: 
# library(bootFS)
nsam <- 30 ## number of samples
ngen <- 100 ## number of features

## get a noise data matrix
logX <- matrix(rnorm(nsam*ngen, 0, 10), nrow=nsam, 
	dimnames=list(paste("s1", 1:nsam,sep="_"), paste("g",1:ngen,sep=""))) 
groupings <- list(grx=c(rep(-1, nsam/2), rep(1,nsam/2)))
## now add some information so some of the genes
igenes <- c(1:10)
sg <- c(1,nsam/3,2*nsam/3,nsam)
logX[sg[1]:sg[2],igenes] <- logX[sg[1]:sg[2],igenes] - 5
logX[(sg[2]+1):sg[3],igenes] <- logX[(sg[2]+1):sg[3],igenes] + 10

## run the bootstrapping
retBS <- doBS(logX, groupings, 
	fs.methods=c("pamr","scad","rf_boruta"),
	DIR="bs", 
	seed=123, bstr=5, saveres=FALSE, jitter=FALSE,
	maxiter=100, maxevals=50, bounds=NULL,
	max_allowed_feat=NULL, n.threshold=50,
	maxRuns=30)

bsres <- makeIG(retBS[[1]], SUBDIR=NULL)

## create the combined importance graph for all methods
## and export the adjacency matrix containing the 
## numbers of occuerrences of the features, as well 
## as the top hits.
res <- resultBS(retBS, DIR="bs", vlabel.cex = 3, filter = 0, saveres = FALSE)

## plot the importance graph directly
ig <- importance_igraph(res$adj, main = "my test", 
        highlight = NULL,	layout="layout.ellipsis",
		pdf=NULL, pointsize=12, tk=FALSE,
		node.color="grey", node.filter=NULL,
		vlabel.cex=1.2, vlabel.cex.min=0.5, vlabel.cex.max=4,
		max_node_cex=8,
        edge.width=1, filter=1, max_edge_cex=2, ewprop=3 )

## remove the created directory
system("rm -rf bs")


## End(Not run)

bootfs documentation built on May 2, 2019, 5:50 p.m.