File: vertex.shape.pie.Rd

package info (click to toggle)
r-cran-igraph 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 27,044 kB
  • sloc: ansic: 204,981; cpp: 21,711; fortran: 4,090; yacc: 1,229; lex: 519; sh: 52; makefile: 8
file content (45 lines) | stat: -rw-r--r-- 1,611 bytes parent folder | download
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plot.common.R
\name{vertex.shape.pie}
\alias{vertex.shape.pie}
\title{Using pie charts as vertices in graph plots}
\description{
More complex vertex images can be used to express addtional information
about vertices. E.g. pie charts can be used as vertices, to denote vertex
classes, fuzzy classification of vertices, etc.
}
\details{
The vertex shape \sQuote{pie} makes igraph draw a pie chart for every
vertex. There are some extra graphical vertex parameters that specify how
the pie charts will look like: \describe{
\item{pie}{Numeric vector, gives
the sizes of the pie slices.}
\item{pie.color}{A list of color vectors to
use for the pies. If it is a list of a single vector, then this is used for
all pies. It the color vector is shorter than the number of areas in a pie,
then it is recycled.}
\item{pie.angle}{The slope of shading lines, given as
an angle in degrees (counter-clockwise).}
\item{pie.density}{The density of
the shading lines, in lines per inch. Non-positive values inhibit the
drawing of shading lines.}
\item{pie.lty}{The line type of the border of the
slices.} }
}
\examples{

g <- make_ring(10)
values <- lapply(1:10, function(x) sample(1:10,3))
if (interactive()) {
  plot(g, vertex.shape="pie", vertex.pie=values,
       vertex.pie.color=list(heat.colors(5)),
       vertex.size=seq(10,30,length.out=10), vertex.label=NA)
}
}
\seealso{
\code{\link[=igraph.plotting]{igraph.plotting()}}, \code{\link[=plot.igraph]{plot.igraph()}}
}
\author{
Gabor Csardi \email{csardi.gabor@gmail.com}
}
\keyword{graphs}