plot | R Documentation |
Displays a scatter plot.
## S4 method for signature 'LogRatio,missing'
plot(
x,
...,
factor = 1,
amount = NULL,
palette_color = palette_color_discrete(),
palette_symbol = palette_shape(),
xlab = NULL,
ylab = NULL,
main = NULL,
sub = NULL,
ann = graphics::par("ann"),
axes = TRUE,
frame.plot = axes,
legend = list(x = "topright")
)
x |
A |
... |
Further graphical parameters. |
factor , amount |
A length-one |
palette_color |
A palette |
palette_symbol |
A palette |
xlab , ylab |
A |
main |
A |
sub |
A |
ann |
A |
axes |
A |
frame.plot |
A |
legend |
A |
plot()
is called for its side-effects: is results in a graphic being
displayed (invisibly return x
).
N. Frerebeau
Other plot methods:
as_graph()
,
barplot()
,
hist()
,
pairs()
## Data from Day et al. 2011
data("kommos", package = "folio")
kommos <- remove_NA(kommos, margin = 1) # Remove cases with missing values
coda <- as_composition(kommos, groups = 1) # Coerce to compositional data
## Log ratio
clr <- transform_clr(coda)
## Use ceramic types for grouping
plot(clr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.