textPlot: Scatter plot, but with text labels

View source: R/textPlot.r

textPlotR Documentation

Scatter plot, but with text labels

Description

Scatter plot, but with text labels

Usage

textPlot(x, y, xlab, ylab, ...)

Arguments

x

x positions (named); alternatively, a 2-column matrix with column and row names

y

y positions, if x is not a matrix

xlab

x axis label

ylab

y axis label

...

Additional arguments to plot()

Examples

a <- runif(10)
b <- runif(10)
names(a) <- names(b) <- LETTERS[1:10]
textPlot(a, b)

X <- cbind(a=a, b=b)
textPlot(X)


pbreheny/breheny documentation built on April 26, 2024, 10:40 a.m.