text.radviz {Radviz} | R Documentation |
Text annotations for for the Radviz Plots
Description
Text draws the strings given in the vector labels at the coordinates given by the radviz projection
Usage
## S3 method for class 'radviz'
text(
x,
...,
main = NULL,
labels = NULL,
size = FALSE,
label.color = NULL,
label.size = NULL,
adj,
pos,
offset,
vfont,
cex,
col,
font,
add
)
Arguments
x |
a radviz object as produced by do.radviz |
... |
further arguments to be passed to or from other methods (not implemented) |
main |
[Optional] a title to the graph, displayed on top if add is |
labels |
the name of the variable used for labeling (see details) |
size |
[Logical] if |
label.color |
the color of springs for visualization |
label.size |
the size of the anchors (see customizing ggplot2 for details on default value) |
adj |
deprecated, see |
pos |
deprecated, see |
offset |
deprecated, see |
vfont |
deprecated, see |
cex |
deprecated, see |
col |
deprecated, see |
font |
deprecated, see |
add |
deprecated, see |
Author(s)
Yann Abraham
Examples
data(iris)
das <- c('Sepal.Length','Sepal.Width','Petal.Length','Petal.Width')
S <- make.S(das)
rv <- do.radviz(iris,S)
text(rv,labels='Species')