forked from plotly/plotly.R
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubplot.Rd
More file actions
59 lines (49 loc) · 1.95 KB
/
subplot.Rd
File metadata and controls
59 lines (49 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/subplots.R
\name{subplot}
\alias{subplot}
\title{View multiple plots in a single view}
\usage{
subplot(..., nrows = 1, widths = NULL, heights = NULL, margin = 0.02,
shareX = FALSE, shareY = FALSE, titleX = shareX, titleY = shareY,
which_layout = "merge")
}
\arguments{
\item{...}{any number of plotly objects. A list of plotly objects or a tibble
with one list-column of plotly objects is also accepted.}
\item{nrows}{number of rows for laying out plots in a grid-like structure.
Only used if no domain is already specified.}
\item{widths}{relative width of each column on a 0-1 scale. By default all
columns have an equal relative width.}
\item{heights}{relative height of each row on a 0-1 scale. By default all
rows have an equal relative height.}
\item{margin}{either a single value or four values (all between 0 and 1).
If four values are provided, the first is used as the left margin, the second
is used as the right margin, the third is used as the top margin, and the
fourth is used as the bottom margin.
If a single value is provided, it will be used as all four margins.}
\item{shareX}{should the x-axis be shared amongst the subplots?}
\item{shareY}{should the y-axis be shared amongst the subplots?}
\item{titleX}{should x-axis titles be retained?}
\item{titleY}{should y-axis titles be retained?}
\item{which_layout}{adopt the layout of which plot? If the default value of
"merge" is used, layout options found later in the sequence of plots will
override options found earlier in the sequence. This argument also accepts a
numeric vector specifying which plots to consider when merging.}
}
\value{
A plotly object
}
\description{
View multiple plots in a single view
}
\examples{
\dontrun{
p1 <- plot_ly(economics, x = date, y = uempmed, showlegend = F)
p2 <- plot_ly(economics, x = date, y = unemploy, showlegend = F)
subplot(p1, p2, p1, p2, nrows = 2)
}
}
\author{
Carson Sievert
}