
Last chance! 50% off unlimited learning
Sale ends in
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.LineChart(x, data=mydata, n.cat=getOption("n.cat"), type=NULL, fill=getOption("fill.bar"),
stroke=getOption("stroke.pt"),
bg=getOption("bg"),
grid=getOption("grid"),
box=getOption("box"),
line=getOption("stroke.pt"),
area=NULL,
shape.pts=21, cex.axis=.75, axes="gray30",
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, quiet=getOption("quiet"),
width=4.5, height=4.5, pdf=FALSE,
…)
lc(…)
c
function, or an entire data frame. If not specified,
then defaults to all numerical variables in the specified data
frame, mydata
by default.mydata
."p"
for
points, "l"
for line, or "b"
for both. The default is
"b"
for both points and lines.lessR
global
function. The
lessR
function showColors
provides examples of all
R named colors.stroke="off"
.bg="off"
.grid="off"
.box="off"
."transparent"
.stroke
and fill
. fill
defaults to
stroke
.x
-axis values are rotated, usually to
accommodate longer values, typically used in conjunction with offset
.y
-axis values are rotated.xlab
not
specified, then the label becomes the name of the corresponding variable. If
xy.ticks
is FALSE
, then no label is displayed. If no y variable is specified,
then xlab
is set to Index unless xlab
has been specified.xy.ticks
is FALSE
, then no label displayed.x.reverse
, the first date is after
the data are reverse sorted. Not needed if data are a time series with
ts
function.time.start
specification, the interval to increment the
date for each sequential data value. A character string, containing one of "day"
,
"week"
, "month"
or "year"
. This string can optionally be preceded by
a positive or negative integer and a space, or followed by "s", as specified in
seq.Date
. Not needed if data are a time series.TRUE
, reverse the ordering of the dates, particularly when the
data are listed such that first row of data is the newest. Accompanies the time.start
specification."mean"
and "median"
. Provides a centerline
for the "median"
by default when the values randomly vary about the mean. A
value of "zero"
specifies the center line should go through zero.TRUE
, display the individual runs in the run analysis.TRUE
, no text output. Can change system default
with global
function.TRUE
, the pdf file is to be redirected to a pdf file.par
, col.lab
,
sub
, color.sub
, color.ticks
to set the color of the
ticks used to label the axis values, and
srt
to rotate the axis value labels.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 mydata
. 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 mydata$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. COLORS
Individual colors in the plot can be manipulated with options such as stroke
. A color theme for all the colors can be chosen for a specific plot with the colors
option with the lessR
function global
. The default color theme is dodgerblue
, but a gray scale is available with "gray"
, and other themes are available as explained in global
, such as "red"
and "green"
. Use the option ghost=TRUE
for a black background, no grid lines and partial transparency of plotted colors. For the color options, such as grid
, 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 mydata
, 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
plot
, global
.# create data frame, mydata, to mimic reading data with Read function
# mydata contains both numeric and non-numeric data
mydata <- data.frame(rnorm(50), rnorm(50), rnorm(50), rep(c("A","B"),25))
names(mydata) <- c("X","Y","Z","C")
# default run chart
LineChart(Y)
# short name
lc(Y)
# compare to standard R plot
plot(mydata$Y, type="l")
# save run chart to a pdf file
LineChart(Y, pdf=TRUE)
# LineChart in gray scale, then back to default "dodgerblue"
global(colors="gray")
LineChart(Y)
global(colors="dodgerblue")
# customize run chart with LineChart options
LineChart(Y, line.width=2, stroke="sienna3",
area="slategray3", bg="mintcream",
center.line="median")
# 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.axis=.7, cex.lab=1.2, cex.main=1.5, col.lab="red", font.main=3,
ylim=c(-4,4), shape.pts=24)
# generate steadily increasing values
Y <- sort(rexp(50))
# default line chart
LineChart(Y)
# line chart with border around plotted values
LineChart(Y, area="off")
# time series chart, i.e., with dates, and filled area
# with option label for the x-axis
LineChart(Y, time.start="2000/09/01", time.by="3 months")
# time series chart from a time series object
y.ts <- ts(Y, 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))
Run the code above in your browser using DataLab