plot_bertin {tabula} | R Documentation |
Bertin Diagram
Description
Plots a Bertin diagram.
Usage
plot_bertin(object, ...)
## S4 method for signature 'matrix'
plot_bertin(
object,
threshold = NULL,
freq = FALSE,
margin = 1,
col = c("white", "black"),
flip = TRUE,
axes = TRUE,
...
)
## S4 method for signature 'data.frame'
plot_bertin(
object,
threshold = NULL,
freq = FALSE,
margin = 1,
col = c("white", "black"),
flip = TRUE,
axes = TRUE,
...
)
Arguments
object |
A |
... |
Currently not used. |
threshold |
A |
freq |
A |
margin |
An |
col |
A vector of colors. |
flip |
A |
axes |
A |
Value
plot_bertin()
is called for its side-effects: it results in a graphic
being displayed (invisibly returns object
).
Bertin Matrix
As de Falguerolles et al. (1997) points out: "In abstract terms, a Bertin matrix is a matrix of displays. ... To fix ideas, think of a data matrix, variable by case, with real valued variables. For each variable, draw a bar chart of variable value by case. High-light all bars representing a value above some sample threshold for that variable."
Author(s)
N. Frerebeau
References
Bertin, J. (1977). La graphique et le traitement graphique de l'information. Paris: Flammarion. Nouvelle Bibliothèque Scientifique.
de Falguerolles, A., Friedrich, F. & Sawitzki, G. (1997). A Tribute to J. Bertin's Graphical Data Analysis. In W. Badilla & F. Faulbaum (eds.), SoftStat '97: Advances in Statistical Software 6. Stuttgart: Lucius & Lucius, p. 11-20.
See Also
Other plot methods:
matrigraph()
,
plot_diceleraas()
,
plot_diversity
,
plot_ford()
,
plot_heatmap()
,
plot_rank()
,
plot_rarefaction
,
plot_spot()
,
seriograph()
Examples
## Data from Lipo et al. 2015
data("mississippi", package = "folio")
## Plot a Bertin diagram...
## ...without threshold
plot_bertin(mississippi)
## ...with the variable mean as threshold
plot_bertin(mississippi, threshold = mean)
## Plot conditional proportions
plot_bertin(mississippi, freq = TRUE, margin = 1)
plot_bertin(mississippi, freq = TRUE, margin = 2)