plot_bertin | R Documentation |
Plots a Bertin diagram.
plot_bertin(object, ...)
## S4 method for signature 'matrix'
plot_bertin(
object,
threshold = NULL,
freq = FALSE,
margin = 1,
color = c("white", "black"),
flip = TRUE,
axes = TRUE,
...
)
## S4 method for signature 'data.frame'
plot_bertin(
object,
threshold = NULL,
freq = FALSE,
margin = 1,
color = c("white", "black"),
flip = TRUE,
axes = TRUE,
...
)
object |
A |
... |
Currently not used. |
threshold |
A |
freq |
A |
margin |
An |
color |
A vector of colors or a |
flip |
A |
axes |
A |
plot_bertin()
is called for its side-effects: it results in a graphic
being displayed (invisibly returns object
).
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."
N. Frerebeau
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.
Other plot methods:
matrigraph()
,
plot_diceleraas()
,
plot_ford()
,
plot_heatmap()
,
plot_rank()
,
plot_spot()
,
seriograph()
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.