Plotting 'Timeseries' Objects: Diethelm W Urtz and Tobias Setz Eth Zurich and Rmetrics Association Zurich May 12, 2014
Plotting 'Timeseries' Objects: Diethelm W Urtz and Tobias Setz Eth Zurich and Rmetrics Association Zurich May 12, 2014
Contents
1 Introduction 4
4 Annotations 30
4.1 Discarding all Annotations . . . . . . . . . . . . . . . . . . . . . . 31
4.2 Adding Title and Labels . . . . . . . . . . . . . . . . . . . . . . . 32
4.3 Changing Axis Font Size . . . . . . . . . . . . . . . . . . . . . . . 33
4.4 Flipping Value Axes . . . . . . . . . . . . . . . . . . . . . . . . . 34
5 Decorations 36
5.1 Modifying Types . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
5.2 Changing Colors by Names . . . . . . . . . . . . . . . . . . . . . 38
5.3 Changing Colors by Color Palettes . . . . . . . . . . . . . . . . . 39
5.4 Changing Line Styles . . . . . . . . . . . . . . . . . . . . . . . . . 41
5.5 Modifying Line Widths . . . . . . . . . . . . . . . . . . . . . . . 42
5.6 Changing Plot Symbols . . . . . . . . . . . . . . . . . . . . . . . 43
5.7 Modifying Plot Symbol Sizes . . . . . . . . . . . . . . . . . . . . 44
5.8 Discarding Grid Lines . . . . . . . . . . . . . . . . . . . . . . . . 45
5.9 Drawing a Box . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
1
6 The Panel Function 48
6.1 Adding a Horizental Zero Line . . . . . . . . . . . . . . . . . . . 49
6.2 Adding an Rug to Multiple Return Plots . . . . . . . . . . . . . . 50
6.3 Adding an EMA to Multiple Index Plots . . . . . . . . . . . . . . 51
7 Conclusions 54
8 Appendix 56
8.1 Margins: mar and oma . . . . . . . . . . . . . . . . . . . . . . . . 57
8.2 Character Table . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
8.3 Color Table . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
8.4 Color Palettes I . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61
8.5 Color Palettes II . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
8.6 Symbol Table . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
8.7 Axis Style ”pretty” . . . . . . . . . . . . . . . . . . . . . . . . . . 64
8.8 Axis Style ”chic” . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
2
1 Introduction
The Rmetrics timeDate and timeSeries packages are workhorses to deal with
chronological objects. Since their inception 2009 under their original names
fCalendar and fSeries they have been only slightly modified. With version R
3.1. we have essentially improved the plot function, but we also took care that
the functionality is almost upward compatible.
In this vignette we show how to work with the recently updated S4 generic
plot function plot. The function is written to display Rmetrics S4 timeSeries
objects. The basic functionality of the plot function is to display single and
multiple views on univariae and multivariate timeSeries objects. The func-
tion plot.ts from R’s base environment, which displays basic ts time series
objects, served as a model for our design of the generic S4 plot function for
timeSeries objects. Similarily, plot.ts can be considered as the prototype for
the S3 plot.zoo method. The xts plot function was build to display univariate
xts time series objects which inherit from zoo’s objects for ordered time series
objects.
The generic S4 time series plotting function can dispay univariate and multi-
variate time series in single and multiple frames. The plots can be tailored with
respect to several viewing components: colors (col), line types (lty), plot symbols
(pch), line widths (lwd), symbol sizes (cex), axis layout (pretty, chic, tailored),
minor tick mark appearence, font styles and font sizes, frame positioning (mar,
oma), as well as tailored panel functions (panel).
Time Axis Layout: For the time axis layout the function pretty determines in
an automative way the at="pretty" positions of the ticks. The format="auto"
is extracted from the time stamps of the time series object or can be overwritten
by the user with a POSIX format string. Alternatively, one can select "chic"
to generate time axis styles. We called this method ”chic” to give reference to
the underlying function axTicksByTime from the Chicago xts package which
generates tick positions and axis labels. Furthermore, a ”tailored” method can
be applied which allows for fully arbitrary user defined positions and formatted
labels. Minor ticks can be added in several fashions.
Annotations: The annotations of the plots are reduced to the y-label. These are
taken by default from the column names of the time series object. This gives the
4
user the freedom to have full control about his views how the plot should be look
like. Note, multivariate time series in single plots show the string "Values" as
label on the y-axis. Main title, sub title, and the x-label on the time axis are not
shown by default. We prefer and recommend to add these decorations calling
the function title. This allows also much more flexibility compared to passing
the arguments through the plot functions. All default annotations (including
the y-label) can be suppressed setting the plot function argument to ann=FALSE.
The argument axes=FALSE suppresses to draw both axes on the plot frame.
Decorations: There are several options to decorate the plot: These include colors
(col), plotting symbols (pch), scaling factor of plotting characters and symbols
(cex), line types (lty), and lindwidths (lwd). Note, all these parameters may
be vectors of the same length as the number of time series, so that each series
can be addressed to its own individual style, color, and size. A grid and the
plot frame (box) can be added or suppresse specifying the arguments grid and
frame.plot in the argument list of the plot function.
Panel Function: In the case of multiple plots the plot frames, are also called
panels. By default in each panel the appropriate curve is drawn calling R’s
lines function panel=lines. This function can be replaced by a user defined
function. This offers a wide range of new views on your time series. So for
example yo can show zero or any other reference lines on the panels, or you can
add rugs to (return) charts, or you can add for an example an EMA indicator
(or any other kind of indicator) to curves shown in individual panels.
[1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=de_CH.UTF-8;L
> require(timeSeries)
> require(xts)
> require(PerformanceAnalytics)
> require(fTrading)
> tS1 <- 100 * cumulated(LPP2005REC[, 1]) # SBI (univariate)
> tS2 <- 100 * cumulated(LPP2005REC[, 1:2]) # SBI & SPI (bivariate)
> tS3 <- 100 * cumulated(LPP2005REC[, 1:3]) # SBI, SPI, SWIIT (Swiss Market)
> tS6 <- 100 * cumulated(LPP2005REC[, 1:6]) # Swiss and Foreign Market Indexes
5
2 Standard Time Series Plots
The plot function from the timeSeries package allows for five different views
on standard plot layouts. These include
The only argument we have to set is the plot.type parameter to determine the
layout of the plot. The default value is "multiple", and the alternative value
is "single". The arguments can be abbreviated as "m" or "s", respectively.
One Column Multiple Plots display multivariate timeSeries objects, such that
each series is plotted in its own frame. Up to four series, the frames are displayed
in one column, for more series the frames are arranged in a two colum column
display.
Two Column Multiple Plots handel the case of more than four timeSeries
objects. Then the the series are displayed in two colums. In total, the number
of rows is not restricted.
8
2.1 Univariate Single Plots
The most simple time series plot shows an univariate curve in a single plot.
The axis is designed from ”pretty” positions calculated from R’s base function
pretty. The labels are printed in the ISO 8601 standard date/time format.
99
98
Time
Figure 1: The chart shows an univariate time series (here the Swiss Bond Index)
in a single frame. For all plot options default values have been chosen. You can
decorate the plot, making it more conveniant to your needs, e.g.: change the
color (col), add a main title and x-label calling the function title, or remove the
grid lines setting the argument grid=FALSE. You can also design the minor tick
marks, setting instead of the value "auto" oe of the following spreads: "day",
the default, "week", or "month".
9
Tow other plot function implementations for xts time series objects can be
found in the contributesd R packages xts and PerformanceAnalytics. Let us
compare how they generate plot positions and time label formats.
> require(PerformanceAnalytics)
> par(mfrow=c(3, 1))
> xts::plot.xts(as.xts(tS1))
> PerformanceAnalytics::chart.TimeSeries(as.xts(tS1))
> plot(tS1)
100 100
99 99
98 98
100
99
98
98
Time
Figure 2: The group of the three charts shows an univariate time series in a
single frame for the plot functions as implemented in the packages xts, Per-
formanceAnalytics, and timeSeries. For example in the case of daily time
series records xts uses U.S. style labels whereas PerformanceAnalytics and
timeSeries use ISO standard date labels YYYY-mm-dd. The plot decorations
are those from default settings.
10
2.2 Multivariate Single Plots
Multivariate time series plots in a single panel are constructed by default in the
way that the first curve is plotted calling the function plot and the remaining
curves by calling the function lines.
110
100
Time
Figure 3: This chart shows a multivariate time series in a single frame. Note,
we have to set the argument plot.type="s". Again, for all plot options the
default settings have been used. You can decorate the plot, making it more
conveniant to your needs, e.g.: change the color vector (col), add a main title
and x-label calling the function title, or remove grid lines setting the argu-
ment grid=FALSE. Note, to change the color settings you can set the argument
col=1:3 which would result in ”black”, ”red”, ”green” for the three curves, or
you can just set the colors by name, or selecting them from a color palette.
11
Now let us compare the plot function from the timeSeries package with the
chart.TimeSeries plotting function from the PerformanceAnalytics function.
(Note, the (xts) has no multivariate plot function implemented.)
130
120
110
100
100
Time
Figure 4: The two charts show a multivariate time series plotted in a single
frame. We use for the plot the functions as implemented in the packages Per-
formanceAnalytics, and timeSeries.
12
2.3 Multiple Plots
x
101
100
SBI
99
98
140
130
SPI
120
110
100
110
106
SII
102
98
Time
13
For more than four curves the frames of the plot design are arranged in two
columns.
x
103
101
102
100
101
LMI
SBI
99
100
98
99
140
130
120
MPI
SPI
120
110
110
100
100
110
140
130
106
ALT
SII
120
102
110
98
100
Time Time
Figure 6: The graph shows the layout how it is created for six curves. There
are two columns with three panels to the left and also three panels to the right.
Note, it is easily possible to adapt the margin sizes and the gap between the
two columns of plots calling the function mar and oma.
14
If you like a design with a small gap between the panel rows, you can modify
the mar parameter to introduce a small gap, here with a width of 0.3. Feel free
to modify it.
x
101
100
SBI
99
98
140
130
SPI
120
110
100
110
106
SII
102
98
Time
Figure 7: One can use in a multiple plot the mar parameter setting to create a
small gap between the rows of the individual charts. This lets a plot look more
elegant.
15
2.4 Combining Single Plots
You can also create your own multiple panel plots. Just combine single panels
in an array of rows and columns using the parameter settings for mfrow, mfcol,
and mar.
99
98
110
100
Time
Figure 8: One can use in single plots the mfrow and mar parameter settings to
place single plots either row by row or column by column. Here, mfrow and
mfcol to the job. In this case a vector of the form c(nr, nc) draws subsequent
figures in an nr-by-nc array on the device by columns (mfcol) or rows (mfrow),
respectively.
16
2.5 Layout of Single Plots
99
98
108
130
104
120
SPI
SII
110
98 100
100
Figure 9: With the function layout you can devide the plot device in rows and
columns expressed in matrix form defined by the argument mat.
17
In addition widths and heights of the layout can be different from row to row,
and/or from column to column. The sizes are expressed by the arguments
widths and heights of the function layout.
99
98
104
120
SPI
SII
98
100
Figure 10: With the function layout one can also define the widths and heights
of the columns and rows.
18
2.6 Bivariate Scatter Plots
For historical reasons, like in the function plot.ts, there is also the option to
create an scatter plot from two univariaye time series. Since this is not a ”true”
time series plot, we will not go in further detail for this display.
> par(mfrow=c(1,1))
> plot(tS2[, 1], tS2[, 2])
140
●●●
● ●●
●●●
●● ● ●●●
●● ●●●
●
●● ● ● ●●
●●
●
● ● ● ●●
●●●● ●
●
●●
● ●●
● ●●
●●●●
●●
● ● ● ●
130
●●
● ●● ●●●
●
● ● ●●●● ● ● ●
●● ●●●
● ●●
●●●
● ●
●● ● ● ●
● ●● ● ● ● ●
●●● ●● ● ● ●
●●
● ● ● ●●
●● ●
●
● ●
●● ● ●
●●
●
120
● ●● ●
●● ●
y
● ●
● ● ●●●●
● ●●
● ● ●●
●●●●●
●● ●● ● ●
●
●●
●
●● ●
● ● ● ●● ●●
● ●●●●● ●●●● ●●● ●
● ● ●
●
● ●● ● ● ● ●●● ●
● ●
● ● ● ●● ●
●
● ●● ● ● ●
●
●●
● ●● ●
● ● ● ● ●●
● ● ●
● ● ● ● ●● ● ●●●● ●
● ●●●
● ●● ● ●● ● ●●
110
● ●● ● ●
● ● ●
● ●●● ●●
● ●●●
●
● ●● ●
● ● ●
● ●●
● ● ●● ●●
●
● ● ● ●●●●● ● ●
●
● ●
●● ● ●●
● ●● ● ● ●●
●●● ● ●●
●
●● ●●● ●
●●● ●● ● ●
●
100
98 99 100 101
Figure 11: If (x) and (y) are univariate time series, then the plot function will
display a scatter plot.
19
3 Time Axis Layout
The function plot comes with three options to design the time axis layout:
"pretty", "chic", and <tailored> (note this not a string argument. <tailored>
should just abbreviate that we have to input character strings of fully arbitray at
positions. For the first two options the style of the axis annotation is generated
in a fully automated way, whereas in the tailored case each tick on the axis to
be user defined.
The ”pretty” time axis layout is the default setting for the argument at. Inter-
nally the function pretty is used to compute a sequence of about n+1 equally
spaced round values which cover the range of the values in the time stamps
time(x) of the series x. The values are chosen so that they are 1, 2 or 5 times
a power of 10.
The ”chic” time axis layout is the alternative setting for the argument at. In-
ternally the function axTicksByTime from the package xts is used to compute
the sequence of axis positions and the format labels.
The <tailored> time axis layout leaves it to the user to specify by himself the
positions (at), the time label formatting (format), and the minor tick marks
(minor.ticks).
22
3.1 Time Axis: ”pretty” or ”chic”?
Our plotting function comes with two axis-styles. The first is called "pretty",
which is the default style, and calculates positions from R’s base function
pretty. The other is called "chic" to remember its origin, arising from the
”Chicago” xts package.
98
98
Figure 12: The graph shows the two flavours from the at="pretty" and the
"chic" axis designs. The first style uses the function pretty from R’s base
environment to compute the positions for the major ticks. The second style uses
the function axTicksByTime from the xts package to compute x-axis tick mark
locations by time. In the upper graph the minor ticks are calendar days, whereas
in the lower graph weekdays are drawn (therefore the small gaps between the
minor ticks become visible). Note, the time series is in both cases an object of
class timeSeries.
23
Now let us plot a multivariate 3-column time series in a single panel. Again we
compare the outcome of the "pretty" and the "chic" axis style.
120
100
120
100
Figure 13: The only difference of this graph compared to the previous is the
fact that we consider here a multivariate time series. Three curves are shown in
a common plot. Note, when using the "chic" style, then the vertical gridlines
are narrower compared to the "pretty" style.
24
3.2 Time Axis - Selecting Minor Tick Marks
The "pretty" style allows to draw the minor tick marks on different time scales.
These are: "day", "week", and "month".
98
98
98
Figure 14: It is worth to note that a good selection of minor tick marks makes
a plot much better readable.
25
3.3 Time Axis - One Column Multiple Plot Layout
In the multiple plot layout the axis are drawn along the same principles as they
are drawn in the case of the single plot layout.
Figure 15: This graph shows a one column multiple plot layout. The one column
layout is generated for up to four time series. When the multivariate time series
has more then four time series then a two column layout is displayed. It is up
to you which axis style you prefer, at="pretty" or at="chic".
26
3.4 Time Axis - Two Column Multiple Plot Layout
Concerning the style of the axis, there is now difference between the one and
two column plot designs.
103
101
102
100
101
LMI
SBI
99
100
98
99
140
130
120
MPI
SPI
120
110
110
100
100
110
140
130
106
ALT
SII
120
102
110
98
100
Figure 16: When we have more then four time series, then the display will be
generated in two columns. Note, it is possible to modify the width of the gap
between the two columns.
27
3.5 Tick and Format Layout: The <tailored> axis style
The third alternative to style the axis offers the users to define format positions
according to his preferences. Here comes an example:
100
Time
140
120
x
100
Time
Figure 17: This graph shows plots with user tailored positions and formatted
axis labels.
28
4 Annotations
Plot annotations are elelents which can be added to plots or completely dis-
carded. To discard all annotations you have to set ann=FALSE in the argument
list of the timSeries plot function. To display annotation you can call the func-
tion title. This allows to add the main title, the sub title, and the x- and
y-labels to a plot. Together with the appropriate character strings, you can also
specify the placement of these annotations by the arguments line and outer.
There are additional functions to add annotations to a plot. These are text
and mtext.
30
4.1 Discarding all Annotations
In a default plot we display only the value-label(s) which are taken from the
units or column names of the time time series object. Title, sub title, and time-
label are not shown. To discard the appearance of all annotations on a plot you
have to set the plot argument ann=FALSE.
120
98
100
2006−01−01 2007−01−01
Figure 18: This graph shows a plot where all annotations have been discarded.
Now feel free to add your own annotations.
31
4.2 Adding Title and Labels
To add a main title, a sub, title, and x- and y-labels you can call the function
title.
Index Index
140
99 100
120
SBI
x
98
100
Time Time
Index Index
140
140
120
120
x
x
100
100
Time
Date Time
Date
Figure 19: This graph displays in a two by two array four single plots. We have
added title and x-lable annotations.
32
4.3 Changing Axis Font Size
Sometimes the axis font size may be considered as too small or too large. Then
you can use the plot argument cex.axis to upsize or downsize the font.
120
100
Nov 01 Jan 02 Mar 01 May 01 Jul 03 Sep 01 Nov 01 Jan 01 Mar 01 Apr 11
2005 2006 2006 2006 2006 2006 2006 2007 2007 2007
140
Values
120
100
Figure 20: This is an example how to change the size of the axis labels relatively
to its default value. The upper graph shows a font size decreased by 20%, the
lower graph a font size increased by 25%. You can proceed in the same way
when using the "pretty" axis style.
33
4.4 Flipping Value Axes
Flipping every second axis label in a multiple plot from left to rigth might be
meaningful in the case when axis labels overwrite themselves.
x
101
100
SBI
99
98
140
130
SPI
120
110
100
110
106
SII
102
98
Time
Figure 21: The graph shows an one column multiple plot, where the axis of the
middle panel is flipped from the left to the right. Note, the same procedure can
also be applied two two column multiple plots.
34
5 Decorations
There exist several options to decorate plots in different ways. Plot types (lines,
points, horizontal bars, etc.) can be modified, colors can be changed, lines can
be modified by style and seize, points can be selected by symbol and size.
• Modifying Types
• Drawing a Box
to show a few of the many types of cdecorations. Play around to achieve your
perfect layout.
36
5.1 Modifying Types
●●
● ●
●●●●●●
● ●●● ●
● ●● ● ●
●
●●
●● ●● ● ●
● ●
●●●
● ●●● ●●
●
●
● ● ●● ●
● ●●●
● ●
● ●●●
130
●
●
●●●
● ●●● ●
● ●
● ● ●
● ● ●●
● ●
●●● ●●
●
● ●●● ● ● ●
●
●
●●●●●● ●
●
●●●
●●
● ● ● ●
●
●
● ●●
●●●
● ● ●
●
● ●
● ●●●
●●● ● ●●●
●●●
SPI
●
● ●
●●
120
●
●
●●●●
●
●●●
●
● ●
●● ●
●
●●
●●●● ●●
●● ●
●
●●●
●
●●● ●●
●● ●
● ● ●●●● ● ●
●
●● ●
●●●
●●● ●
●●● ●●
● ●
●
●●
● ●● ● ●
● ●●
●
● ● ● ●
● ●
● ●●
●●
●
●●●●● ● ●●
●
● ●
●● ● ●
●● ●
● ●●●●
●
●●● ● ●●●● ● ●●● ●
110
●●●●
●
●●●
● ●
● ●
●
●● ● ●
● ●
●
● ● ● ● ●●
●●●● ●●●
● ●● ●
● ● ●
●
● ●●
● ● ● ●●● ●
● ●● ● ●
●●
●
●
●●● ●●●
● ●● ● ●●●●
●
●● ● ●
●
● ●●
●●●
● ● ●
●● ●
●●
●● ●
●● ●
●
●●●
100
●
110
●
106
SII
102
98
Figure 22: If we like to consider in a multiple plot for each panel its own plot
style then we can set the parameter type.
37
5.2 Changing Colors by Names
Colors can be changed in several ways. Just by their numbers, e.g. 1 (black),
2 (red), 3 (green) etc., or by name, e.g. ”black”, ”red”, ”green”, etc. or by using
well designed color palettes.
x
101
100
SBI
99
98
140
130
SPI
120
110
100
110
106
SII
102
98
Time
Figure 23: This graph shows how to assign colors by name in the case of a
multiple plot. You can do it in the same way setting plot.type="s" if you like
to display all three curves in a common single plot.
38
5.3 Changing Colors by Color Palettes
When the number of curves increases, then it can become quite difficult to find
a set of nice colors. In such cases it is convenient to select the colors from color
palettes.
110
100
Figure 24: This graph shows an example of six curves diplayed in a sequence of
reds. For this we called the function seqPalette.
39
FUNCTION: COLOUR PALETTE
40
5.4 Changing Line Styles
In multiple plot to each curve an own line style lty can be assigned: 0 ”blank”,
1 ”solid”, 2 ”dashed”, 3 ”dotted”, 4 ”dotdash”, 5 ”longdash”, or 6 ”twodash”.
Figure 25: When we like to print plots in black and white, then its makes much
sense to use different line types so that we can distinguish the curves one from
each other.
41
5.5 Modifying Line Widths
Not only the line type, but also the line width can be modified for each curve
in an individual kind.
Figure 26: The graph shows three line widths, the upper’s curve width is thick,
the middle’s curve width is medium, and the lowest’s curve width is the thinnest
one.
42
5.6 Changing Plot Symbols
To use different plot symbols we can assign them by the parameter pch. Don’t
forget also to set type="p".
43
5.7 Modifying Plot Symbol Sizes
The argument cex.pch allows to increase or decrease plot symbol sizes with
respect to the current plot symbol size.
110
100
●●●●● ●●●●● ●
●●● ●●●● ●●
● ● ●
● ●●● ● ●
●●●● ●●●●● ● ●
●●● ●●● ●●●● ●●●● ● ● ●●
● ●● ● ●●●
●
●●● ●●●● ●●
●● ●●● ●● ●●●●●
●● ● ● ●● ●●● ● ● ●● ●● ●● ● ● ●●●●● ●●●
● ●● ●● ●●● ●● ●● ● ● ● ●●● ● ●●● ●●●●● ●●●●● ● ●● ●●
● ●●● ● ● ●●●●● ●●● ● ●
●● ●● ●
● ● ●● ● ●
●● ●● ●●●● ●●● ●●●
● ●●● ● ● ●● ● ●●●● ●●● ●● ●●●● ● ●
● ● ●● ●●●●● ● ●
● ●● ●● ●●● ●●●● ● ●
●
● ● ● ● ● ● ●● ●
●● ●● ● ●● ● ●●● ●●● ●
● ●●● ● ●
●
●
● ●
●● ●●
●●●●● ●
●● ●●● ●●●● ●●
●
●● ●●● ● ● ● ● ●●●●● ●
●● ● ●●● ●●●● ●●●
● ●● ●●
● ●●
●●● ● ●● ● ● ● ●●●●
● ●●●● ●●● ● ● ●●●● ●● ● ●●●●
●
●● ●●
●● ●●
Figure 27: This plot show how to change the size of plot symbols in a single
plot setting the argument cex.pch. Note, for each curve its own size can be set.
The same approach can be used also for multiple plots.
44
5.8 Discarding Grid Lines
By default grid lines are displayed. To discard the grid lines from the plot set
the arguments grid=FALSE.
110
100
Time
Figure 28: By default a grid is drawn on top of the plot. You can remove it by
setting the argument grid=FALSE
45
5.9 Drawing a Box
110
100
Time
Figure 29: By default the plots are displayed as frame plots. This means that
the graphs are surrounded by a box. This box can be discarded setting the plot
argument frame.plot=FALSE.
46
6 The Panel Function
Multiple plots are very powerful plotting designs. Each panel in a graph can
individually tailored by the user. By default each curve in a panel is generated
by the function lines. You can define your own panel function(s) by setting
the plot argument panel to a user dfined functions.
48
6.1 Adding a Horizental Zero Line
In this example we show how to write a panel function which allows to add a
horizontal zero line to each plot panel.
Figure 30: This multiple plot shows panels with curves having a horizontal zero
reference line.
49
6.2 Adding an Rug to Multiple Return Plots
This example shows how to add in each panel rugs to the righ Y-axis.
0.002
LMI
SBI
0.000
−0.003
−0.004
0.01
0.01
MPI
SPI
−0.01
−0.01
−0.03
−0.03
0.01
0.005
ALT
SII
−0.01
−0.005
−0.03
Figure 31: This multiple plot shows panels with rugs on the right Y-axis.
50
6.3 Adding an EMA to Multiple Index Plots
This example shows how to add an EMA indicator to each plot panel. The
emaTA() function is provided by the fTrading package.
51
7 Conclusions
The plot function in the timeSeries package is a very powerful tool to create
plots from time series objects. This includes to display univariate and multi-
variate time series in single and multiple panels, to select from two styles for
the time-axis or even to tailor positions and formats according to his own needs,
and to modifiy annotations and decorations of plots.
54
8 Appendix
In the appendix we have summarized graphs and tables which are useful tools
to create plots. We have reprinted the default color table from R, we have
summarized several color palettes as available in the fBasics package and other
contributed R packages, and two tables with font characters and plot symbols.
56
8.1 Margins: mar and oma
> # Plot:
> # - oma stands for 'Outer Margin Area'
> # - mar represents the 'figure Margins'
> # - The default size is c(5,4,4,2) + 0.1
> # - The axes tick marks will go in the first lines
> par(mfrow=c(1, 1))
> par(oma=c(3,3,3,3)) # all sides have 3 lines of space
> par(mar=c(5,4,4,2) + 0.1)
> plot(x=1:10, y=1:10, type="n", xlab="X", ylab="Y")
> # Add Text tot the Plot Part - red
> text(5,5, "Plot", col="red", cex=2)
> text(5,4, "text(5,5, \"Plot\", col=\"red\", cex=2)", col="red", cex=1)
> box("plot", col="red", lwd=2)
> # Add text to thebThe Figure Part - grey
> mtext("Margins", side=3, line=2, cex=1.5, col="grey")
> mtext("par(mar=c(5,4,4,2) + 0.1)", side=3, line=1, cex=1, col="grey")
> mtext("Line 0", side=3, line=0, adj=1.0, cex=1, col="grey")
> mtext(" 1", side=3, line=1, adj=1.0, cex=1, col="grey")
> mtext("Line 2", side=3, line=2, adj=1.0, cex=1, col="grey")
> mtext("Line 3", side=3, line=3, adj=1.0, cex=1, col="grey")
> mtext("Line 0", side=2, line=0, adj=1.0, cex=1, col="grey")
> mtext("Line 1", side=2, line=1, adj=1.0, cex=1, col="grey")
> mtext("Line 2", side=2, line=2, adj=1.0, cex=1, col="grey")
> mtext("Line 3", side=2, line=3, adj=1.0, cex=1, col="grey")
> box("figure", col="grey")
> # The title will fit in the third line on the top of the graph.
> title("Ttitle - Third Line")
> # Note 'outer=TRUE' moves us from the figure to the outer margins.
> mtext("Outer Margin Area", side=1, line=1, cex=1.8, col="brown", outer=TRUE)
> mtext("par(oma=c(3,3,3,3))", side=1, line=2, cex=1, col="orange", outer=TRUE)
> mtext("Line 0", side=1, line=0, adj=0.0, cex=0.8, col="orange", outer=TRUE)
> mtext("Line 1", side=1, line=1, adj=0.0, cex=1, col="orange", outer=TRUE)
> mtext("Line 2", side=1, line=2, adj=0.0, cex=1, col="orange", outer=TRUE)
> box("outer", col="orange")
57
Line 3
Margins
Ttitle − Third Line
Line 2
par(mar=c(5,4,4,2) + 0.1) 1
Line 0
Line 3
Line 2
Line101
Line 0
8
6
Y
Plot
text(5,5, "Plot", col="red", cex=2)
4
2
2 4 6 8 10
Line 0
Line 1 Outer Margin Area
Line 2 par(oma=c(3,3,3,3))
58
8.2 Character Table
Table of Characters
0 1 2 3 4 5 6 7
4 ! ∀ # ∃ % & ∋
5 ( ) ∗ + , − . /
6 0 1 2 3 4 5 6 7
7 8 9 : ; < = > ?
10 ≅ Α Β Χ ∆ Ε Φ Γ
11 Η Ι ϑ Κ Λ Μ Ν Ο
12 Π Θ Ρ Σ Τ Υ ς Ω
13 Ξ Ψ Ζ [ ∴ ] ⊥ _
14 α β χ δ ε φ γ
η ϕ µ
15 ι κ λ ν ο
16 π θ ρ σ τ υ ϖ ω
17 ξ ψ ζ { | } ∼
20
21
22
23
24 € ϒ ′ ≤ ⁄ ∞ ƒ ♣
25 ♦ ♥ ♠ ↔ ← ↑ → ↓
26 ° ± ″ ≥ × ∝ ∂ •
27 ÷ ≠ ≡ ≈ … ↵
30 ℵ ℑ ℜ ℘ ⊗ ⊕ ∅ ∩
31 ∪ ⊃ ⊇ ⊄ ⊂ ⊆ ∈ ∉
32 ∠ ∇ ∏ √ ⋅
33 ¬ ∧ ∨ ⇔ ⇐ ⇑ ⇒ ⇓
34 ◊ 〈 ∑
35
36 〉 ∫ ⌠ ⌡
37
59
8.3 Color Table
0 10 20 30 40 50 60 70 80 90
1 11 21 31 41 51 61 71 81 91
2 12 22 32 42 52 62 72 82 92
3 13 23 33 43 53 63 73 83 93
4 14 24 34 44 54 64 74 84 94
5 15 25 35 45 55 65 75 85 95
6 16 26 36 46 56 66 76 86 96
7 17 27 37 47 57 67 77 87 97
8 18 28 38 48 58 68 78 88 98
9 19 29 39 49 59 69 79 89 99
60
8.4 Color Palettes I
ramp − purple2green ramp − blue2yellow ramp − cyan2magenta seq − Blues seq − BuGn
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
seq − BuPu seq − GnBu seq − Greens seq − Greys seq − Oranges
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
seq − OrRd seq − PuBu seq − PuBuGn seq − PuRd seq − Purples
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
seq − RdPu seq − Reds seq − YlGn seq − YlGnBu seq − YlOrBr
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
61
8.5 Color Palettes II
seq − YlOrRd div − BrBG div − PiYG div − PRGn div − PuOr
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
div − RdBu div − RdGy div − RdYlBu div − RdYlGn div − Spectral
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
quali − Accent quali − Dark2 quali − Paired quali − Pastel1 quali − Pastel2
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
quali − Set1 quali − Set2 quali − Set3 focus − redfocus focus − greenfocus
4 3 4 3 4 3 4 3 4 3
5 2 5 2 5 2 5 2 5 2
6 1 6 1 6 1 6 1 6 1
7 12 7 12 7 12 7 12 7 12
8 11 8 11 8 11 8 11 8 11
9 10 9 10 9 10 9 10 9 10
62
8.6 Symbol Table
63
8.7 Axis Style ”pretty”
[1] "%Y-%m-%d"
GMT
[1] [2005-07-01] [2006-01-01] [2006-07-01] [2007-01-01] [2007-07-01]
GMT
[1] [2005-07-01] [2006-01-01] [2006-07-01] [2007-01-01] [2007-07-01]
64
8.8 Axis Style ”chic”
65
+ }
+ }
Nov 01\n2005 Dec 01\n2005 Jan 02\n2006 Feb 01\n2006 Mar 01\n2006 Apr 03\n2006
1 23 45 67 87 110
May 01\n2006 Jun 01\n2006 Jul 03\n2006 Aug 01\n2006 Sep 01\n2006 Oct 02\n2006
130 153 175 196 219 240
Nov 01\n2006 Dec 01\n2006 Jan 01\n2007 Feb 01\n2007 Mar 01\n2007 Apr 02\n2007
262 284 305 328 348 370
Apr 11\n2007
377
66
About the Authors
Tobias Setz has a Bachelor and Master in Computational Science from ETH
in Zurich and has contributed with his Thesis projects on wavelet analytics and
Bayesian change point analytics to this handbook. He is now a PhD student in
the Econophysics group at ETH Zurich at the Institute for Theoretical Physics.
67
About Rmetrics
Contributions to Rmetrics
are coming from several educuational institutions world wide. These include
the Rmetrics web site and documentation project supported by ITP/CSE ETH
Zurich, the organization of Summerschools and Workshops supported by ITP/CSE
ETH Zurich, the R-sig-Finance Help and Mailing List, supported by SfS ETH
Zurich, the R-forge development server, supported by University of Economics
in Vienna, CRAN Test and Distribution Server for R software, supported by
University of Economics Vienna, the Debian Linux integration supported by
the Debian Association. Many thanks to all behind these projects who gave us
continuous support over the last years.
Rmetrics Association
www.rmetrics.org
68
References
[1] Achim Zeileis and Gabor Grothendieck (2005): zoo: S3 Infrastructure for
Regular and Irregular Time Series. Journal of Statistical Software, 14(6),
1-27. URL http://www.jstatsoft.org/v14/i06/
[2] Adrian Trapletti and Kurt Hornik (2007): tseries: Time Series Analysis
and Computational Finance. R package version 0.10-11.
69