-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathplotDataFrame.Rd
65 lines (54 loc) · 1.67 KB
/
plotDataFrame.Rd
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
59
60
61
62
63
64
65
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plots.R
\name{plotDataFrame}
\alias{plotDataFrame}
\title{Make a plot from a data frame}
\usage{
plotDataFrame(
frame,
params,
style = "line",
xlab = waiver(),
ylab = waiver(),
xtrans = "identity",
ytrans = "identity",
y_ticks = 6,
highlight = NULL,
legend_var = NULL,
wrap_var = NULL,
wrap_scale = NULL
)
}
\arguments{
\item{frame}{A data frame with at least three variables.
The first three variables are used, in that order, as:
\enumerate{
\item Variable to be plotted on x-axis
\item Variable to be plotted on y-axis
\item Grouping variable
}}
\item{params}{A MizerParams object, which is used for the line colours and
line types.}
\item{style}{The style of the plot. Available options are "line' for geom_line
and "area" for geom_area. Default is "line".}
\item{xlab}{Label for the x-axis}
\item{ylab}{Label for the y-axis}
\item{xtrans}{Transformation for the x-axis. Often "log10" may be useful
instead of the default of "identity".}
\item{ytrans}{Transformation for the y-axis.}
\item{y_ticks}{The approximate number of ticks desired on the y axis}
\item{highlight}{Name or vector of names of the species to be highlighted.}
\item{legend_var}{The name of the variable that should be used in the legend
and to determine the line style. If NULL then the grouping variable is
used for this purpose.}
\item{wrap_var}{Optional. The name of the variable that should be used for
creating wrapped facets.}
\item{wrap_scale}{Optional. Used to pass the scales argument to facet_wrap().}
}
\value{
A ggplot2 object
}
\description{
This is used internally by most plotting functions.
}
\keyword{internal}