LineChart {lessR} | R Documentation |
Line Chart such as a Run Chart or Time-Series Chart
Description
Abbreviation: lc
Plots a line chart, the values of the variable ordered according to their order in the data frame. Usually this ordering would be an ordering according to time, which yields a run chart. The default run chart provides the index, that is, sequential position, of each value of the variable from 1 to the last value. Optionally dates can be provided so that a time-series plot is produced.
For data of one variable exhibiting little trend, the center line is provided for the generation of a run chart, plotting the values of a variable in order of occurrence over time_ When the center line, the median by default, is plotted, the analyses of the number and composition of the individual runs, number of consecutive values above or below the center line, is also displayed. Also, the defaults change for each of the types of plots. The intent is to rely on the default values for a relatively sophisticated plot, particularly when compared to the default values of the standard R plot
function called with a single variable.
If the provided object to analyze is a set of multiple variables, including an entire data frame, then each non-numeric variable in the data frame is analyzed and the results written to a pdf file in the current working directory. The name of each output pdf file that contains a bar chart and its path are specified in the output.
Usage
LineChart(x, data=d, rows=NULL,
n_cat=getOption("n_cat"), type=NULL,
line_color=getOption("pt_color"), area=NULL,
shape_pts=21, lab_cex=1.0, axis_cex=0.75,
axis_text_color=getOption("axis_x_text_color"),
rotate_x=0, rotate_y=0, offset=.5,
xy_ticks=TRUE, line_width=1,
xlab=NULL, ylab=NULL, main=NULL, sub=NULL, cex=NULL,
time_start=NULL, time_by=NULL, time_reverse=FALSE,
center_line=c("default", "mean", "median", "zero", "off"),
show_runs=FALSE, eval_df=NULL, quiet=getOption("quiet"),
width=6, height=6, pdf=FALSE,
...)
lc(...)
Arguments
x |
Variable(s) to analyze. Can be a single numerical variable,
either within a data frame or as a vector in the user's workspace,
or multiple variables in a data frame such as designated with the
|
data |
Optional data frame that contains the variable(s) of interest,
default is |
rows |
A logical expression that specifies a subset of rows of the data frame to analyze. |
n_cat |
For the analysis of multiple variables, such as a data frame, specifies the largest number of unique values of variable of a numeric data type for which the variable will be analyzed as a categorical. Default is 0. |
type |
Character string that indicates the type of plot, either |
line_color |
Color of the plotted line. |
area |
Color of area under the plotted line segments, which by default is not
applied, equivalent to a color of |
shape_pts |
The standard plot character, with values defined in help(points). The
default value is 21, a circle with both a border and filled area, specified here as
|
lab_cex |
Scale magnification factor for axis labels. |
axis_cex |
Scale magnification factor, which by defaults displays the axis values to be smaller than the axis labels. |
axis_text_color |
Color of the font used to label the axis values_ |
rotate_x |
Degrees that the |
rotate_y |
Degrees that the |
offset |
The amount of spacing between the axis values and the axis_ Default is 0.5. Larger values such as 1.0 are used to create space for the label when longer axis value names are rotated. |
xy_ticks |
Flag that indicates if tick marks and associated values on the axes are to be displayed. |
line_width |
Width of the line segments_ |
xlab |
Label for x-axis_ For two variables specified, x and y, if |
ylab |
Label for y-axis_ If not specified, then the label becomes the name of
the corresponding variable. If |
main |
Label for the title of the graph. If the corresponding variable labels exist, then the title is set by default from the corresponding variable labels. |
sub |
Sub-title of graph, below xlab_ |
cex |
Magnification factor for any displayed points, with default of cex=1.0. |
time_start |
Optional starting date for first data value. Format must be
"%Y-%m-%d" or "%Y/%m/%d". If using with |
time_by |
Accompanies the |
time_reverse |
When |
center_line |
Plots a dashed line through the middle of a run chart. The two
possible values for the line are |
show_runs |
If |
eval_df |
Determines if to check for existing data frame and
specified variables. By default is |
quiet |
If set to |
width |
Width of the plot window in inches, defaults to 4.5. |
height |
Height of the plot window in inches, defaults to 4.5. |
pdf |
If |
... |
Other parameters such as from |
Details
OVERVIEW
The line chart is based on the standard R function plot
when called with only a single variable.
The values on the horizontal axis of the line chart are automatically generated. The default is the index variable, the ordinal position of each data value, in which case this version of the line chart is a run chart. Or, dates on the horizontal axis can be specified from the specified starting date given by x.start
and the accompanying increment as given by x.by
, in which case the line chart is typically referred to as a time series chart.
If the data values randomly vary about the mean, the default is to plot the mean as the center line of the graph, otherwise the default is to ignore the center line. The default plot type for the line chart is type="b"
, for both points and the corresponding connected line segments_ The size of the points is automatically reduced according to the number of points of points plotted, and the cex
option can override the computed default. If the area below the plotted values is specified to be filled in with color, then the default line type changes to type="l"
.
DATA
The data may either be a vector from the global environment, the user's workspace, as illustrated in the examples below, or one or more variable's in a data frame, or a complete data frame. The default input data frame is d
. Can specify the source data frame name with the data
option. If multiple variables are specified, only the numerical variables in the list of variables are analyzed. The variables in the data frame are referenced directly by their names, that is, no need to invoke the standard R
mechanisms of the d$name
notation, the with
function or the attach
function. If the name of the vector in the global environment and of a variable in the input data frame are the same, the vector is analyzed.
The rows
parameter subsets rows (cases) of the input data frame according to a logical expression. Use the standard R operators for logical statements as described in Logic
such as &
for and, |
for or and !
for not, and use the standard R relational operators as described in Comparison
such as ==
for logical equality !=
for not equals, and >
for greater than.
COLORS
Individual colors in the plot can be manipulated with options such as color
. A color theme for all the colors can be chosen for a specific plot with the colors
option with the lessR
function style
. The default color theme is dodgerblue
, but a gray scale is available with "gray"
, and other themes are available as explained in style
, such as "red"
and "green"
. Use the option style(sub_theme="black")
for a black background and partial transparency of plotted colors.
For the color options, such as grid_color
, the value of "off"
is the same as "transparent"
.
VARIABLE LABELS
Although standard R does not provide for variable labels, lessR
does, obtained from the Read
function. If the variable labels exist, then the corresponding variable label is by default listed as the label for the horizontal axis and on the text output. For more information, see Read
.
PDF OUTPUT
To obtain pdf output, use the pdf
option, perhaps with the optional width
and height
options. These files are written to the default working directory, which can be explicitly specified with the R setwd
function.
ONLY VARIABLES ARE REFERENCED
The referenced variable in a lessR
function can only be a variable name (or list of variable names). This referenced variable must exist in either the referenced data frame, such as the default d
, or in the user's workspace, more formally called the global environment. That is, expressions cannot be directly evaluated. For example:
> LineChart(rnorm(50)) # does NOT work
Instead, do the following:
> Y <- rnorm(50) # create vector Y in user workspace > LineChart(Y) # directly reference Y
Author(s)
David W. Gerbing (Portland State University; gerbing@pdx.edu)
See Also
Examples
# create data frame, d, to mimic reading data with Read function
# d contains both numeric and non-numeric data
d <- data.frame(rnorm(50), rnorm(50), rnorm(50), rep(c("A","B"),25))
names(d) <- c("X","Y","Z","C")
# default run chart
LineChart(Y)
# short name
lc(Y)
# save run chart to a pdf file
#LineChart(Y, pdf=TRUE)
# LineChart in gray scale, then back to default theme
style("gray")
LineChart(Y)
style()
# customize run chart with LineChart options
style(panel_fill="mintcream", color="sienna3")
LineChart(Y, line_width=2, area="slategray3", center_line="median")
style() # reset style
# customize run chart with R par parameters
# 24 is the R value for a half-triangle pointing up
lc(Y, xlab="My xaxis", ylab="My yaxis", main="My Best Title",
cex.main=1.5, font.main=3, ylim=c(-4,4), shape_pts=24)
# generate steadily increasing values
# get a variable named A in the user workspace
A <- sort(rexp(50))
# default line chart
LineChart(A)
# line chart with border around plotted values
LineChart(A, area="off")
# time series chart, i.e., with dates, and filled area
# with option label for the x-axis
LineChart(A, time_start="2000/09/01", time_by="3 months")
# time series chart from a time series object
y.ts <- ts(A, start=c(2000, 9), frequency=4)
LineChart(y.ts)
# LineChart with built-in data set
LineChart(breaks, data=warpbreaks)
# Line charts for all numeric variables in a data frame
LineChart()
# Line charts for all specified numeric variables in a list of variables
# e.g., use the combine or c function to specify a list of variables
LineChart(c(X,Y))