Displaying 2 results from an estimated 2 matches for "vlab".
Did you mean:
slab
2003 Nov 07
2
Annoteting graphs using text
...ese are just
# test vectors
o1=c(11,9,54,55,50,44,58,5,21,58,41,59,39,34,23)
o2=c(27,15,72,63,65,49,51,8,30,43,40,62,52,49,21)
#title is a specification for the plot title; see 'main = title' in the
#plot function
#hlab is the x axis label; see "xlab = hlab" in the plot function
#vlab is the y axis label; see "ylab = vlab" in the plot function
title="This is a test plot"
vlab="Label for verticle axis"
hlab="Label for horizontal axis"
# Start of the function I call lin
lin = function (x,y)
{
lincc =
(2 * cov(x,y)...
2012 May 03
1
bwplot: using a numeric variable to position boxplots
...also corresponds to a numeric year. I'd like to modify the plots
to position the boxplots according to
the numeric value of year, but I can't figure out how to do this.
Also, I'd to modify the strip labels that give the variable names to use
longer variable labels I define below as
vlab.
> install.packages("heplots", repos="http://R-Forge.R-project.org")
> # requires heplots 0.9-12 for Skulls data
> library(heplots)
> data(Skulls)
>
> # make shorter labels for epochs
> Skulls$epoch <- factor(Skulls$epoch,
labels=sub("c"...