geom_path() connects the observations in the order in which they appear in the data. geom_line() connects them in order of the variable on the x axis. geom_step() creates a stairstep plot, highlighting exactly when changes occur. The group aesthetic determines which cases are connected together.
geom_path({
"mapping" = null,
"data" = null,
"stat" = "identity",
"position" = "identity",
"...",
"lineend" = "butt",
"linejoin" = "round",
"linemitre" = 10,
"arrow" = null,
"na.rm" = false,
"show.legend" = NA,
"inherit.aes" = true
})
geom_line({
"mapping" = null,
"data" = null,
"stat" = "identity",
"position" = "identity",
"na.rm" = false,
"orientation" = NA,
"show.legend" = NA,
"inherit.aes" = true,
"..."
})
geom_step({
"mapping" = null,
"data" = null,
"stat" = "identity",
"position" = "identity",
"direction" = "hv",
"na.rm" = false,
"show.legend" = NA,
"inherit.aes" = true,
"..."
})
mapping |
Set of aesthetic mappings created by | |
---|---|---|
data |
The data to be displayed in this layer. There are three options: If NULL, the default, the data is inherited from the plot data as specified in the call to A data.frame, or other object, will override the plot data. All objects will be fortified to produce a data frame. See fortify() for which variables will be created. A function will be called with a single argument, the plot data. The return value must be a data.frame, and will be used as the layer data. A function can be created from a formula (e.g. ~ head(.x, 10)). | |
stat |
The statistical transformation to use on the data for this layer, as a string. | |
position |
Position adjustment, either as a string, or the result of a call to a position adjustment function. | |
... |
Other arguments passed on to | |
lineend |
Line end style (round, butt, square). | |
linejoin |
Line join style (round, mitre, bevel). | |
linemitre |
Line mitre limit (number greater than 1). | |
arrow |
Arrow specification, as created by grid::arrow(). | |
na.rm |
If FALSE, the default, missing values are removed with a warning. If TRUE, missing values are silently removed. | |
show.legend |
logical. Should this layer be included in the legends? NA, the default, includes if any aesthetics are mapped. FALSE never includes, and TRUE always includes. It can also be a named logical vector to finely select the aesthetics to display. | |
inherit.aes |
If FALSE, overrides the default aesthetics, rather than combining with them. This is most useful for helper functions that define both data and aesthetics and shouldn't inherit behaviour from the default plot specification, e.g. borders(). | |
orientation |
The orientation of the layer. The default (NA) automatically determines the orientation from the aesthetic mapping. In the rare event that this fails it can be given explicitly by setting orientation to either "x" or "y". See the Orientation section for more detail. | |
direction |
direction of stairs: 'vh' for vertical then horizontal, 'hv' for horizontal then vertical, or 'mid' for step half-way between adjacent x-values. |
An alternative parameterisation is geom_segment()
, where each line corresponds to a single case which provides the start and end coordinates.
This geom treats each axis differently and, thus, can thus have two orientations. Often the orientation is easy to deduce from a combination of the given mappings and the types of positional scales in use. Thus, cxplot will by default try to guess which orientation the layer should have. Under rare circumstances, the orientation is ambiguous and guessing may fail. In that case the orientation can be specified directly using the orientation parameter, which can be either "x" or "y". The value gives the axis that the geom should run along, "x" being the default orientation you would expect for the geom.
geom_path() understands the following aesthetics (required aesthetics are in bold)
:
x
y
alpha
color
group
linetype
size
Learn more about setting these aesthetics in vignette("cxplot-specs").
// geom_line() is suitable for time series
var cxp = new cxplot("canvas1", economics, aes("date", "unemploy"));
cxp.geom_line();
var cxp = new cxplot("canvas2", economics_long, aes("date", "value01", {"color": "vari"}));
cxp.geom_line();
// geom_step() is useful when you want to highlight exactly when
// the y value changes
//recent <- economics[economics$date > as.Date("2013-01-01"), ]
var cxp = new cxplot("canvas3", recent, aes("date", "unemploy"));
cxp.geom_line();
var cxp = new cxplot("canvas4", recent, aes("date", "unemploy"));
cxp.geom_step();
// Changing parameters
var cxp = new cxplot("canvas5", economics, aes("date", "unemploy"));
cxp.geom_line({"color": "red"});
var df = [["supp", "dose", "len"], ["VC", "D0.5", 6.8], ["VC", "D1", 15.0], ["VC", "D2", 33], ["OJ", "D0.5", 4.2], ["OJ", "D1", 10.0], ["OJ", "D2", 29.5]];
var cxp = new cxplot("canvas6", df, aes("dose", "len", {"group": "supp"}));
cxp.geom_point();
cxp.geom_line();
var df = [["supp", "dose", "len"], ["VC", "D0.5", 6.8], ["VC", "D1", 15.0], ["VC", "D2", 33], ["OJ", "D0.5", 4.2], ["OJ", "D1", 10.0], ["OJ", "D2", 29.5]];
var cxp = new cxplot("canvas7", df, aes("dose", "len", {"group": "supp"}));
cxp.geom_point();
cxp.geom_line(aes({"linetype" : "supp"}));