Displaying 6 results from an estimated 6 matches for "maintitle".
2008 Feb 29
1
setHook and lattice
...hich works fine with vanilla plot, but the hook 'plot.new'
doesn't appear to be relevant to the lattice package. I was wondering if
there is a alternative someone can suggest for use with the lattice package.
Example code:
library(lattice)
graphics.off()
myFunc <- function()
{
mainTitle <<- 'Page 1'
}
setHook('plot.new', NULL, 'replace')
setHook('plot.new', myFunc)
mainTitle <- 'No hook called'
plot(1:10, main = mainTitle)
win.graph()
mainTitle <- 'No hook called'
xyplot(1:10 ~ 1:10, main = mainTitle)
setHook('...
2012 Sep 16
1
How to plot two lines, and only one line with errorbar by qqplots of R
...ata.frame (
method = rep(c("Wrong", "Correct", "Full Bayes"), each = T_obs),
mean.beta = c(mean.beta1, mean.beta2, mean.beta3),
t = rep(points, 3),
std.beta = c(std.beta1, std.beta2, std.beta3)
)
limits = aes(ymin = mean.beta - std.beta, ymax = mean.beta + std.beta);
maintitle = paste("beta function (std = ", std, ")", sep = "");
p + geom_line() + geom_errorbar(limits, width = 0.05) + ggtitle(maintitle) +
theme(legend.title=element_blank(), legend.justification=c(0,1),
legend.position=c(0,1))+
scale_x_continuous(breaks=seq(0, 10, .1)...
2007 Oct 31
2
Shell Bash with R
...dSizeFactor <- 0.8
plotOwnOutput <- FALSE
plotFontFamily <- "Helvetica"
plotFontPointsize <- 22
plotWidth <- 10
plotHeight <- 10
plotConfidence <- 0.95
mainTitle <- "Deregistrations by Timeout"
xSet <- data$Steps[1]
xTitle <- "Steps"
ySet <- data$Time[s]
yTitle <- "Time]"
zSet <- data$Region
zTitle <- "Region{R}"...
2005 Oct 29
1
how to get colnames of a dataframe within a function called by 'apply'
Hello alltogether,
how is it possible to assign the colnames of a data.frame to a function
called by apply, e.g. for labeling a plot?
Example: I want to plot several qqnorm-plots side by side and there
should be a maintitle for each qqnorm-plot which is identical to the
respective colname.
I checked, but the column which is processed by the function called by
apply does not contain a colname (because by using str() it seems it is
no column at this point, but just a e.g. numerical vector).
I also tried with colnames...
2005 Dec 26
8
Add notes to a graph
Hi, I have done a search on this in vain. How can I add a note to the foot of a graph example below
|-----------------------|
| Title |
| -------- |
| | my | |
| | graph | |
| | | |
| | ______| |
|note: source |
|-----------------------|
Many thanks
Ronnie
2015 Feb 07
3
how to draw paired mosaic plot?
If there are many character variables,and I want to get the mosaic plot of every pair of each variable,how to do then?
If the variables are numeric, I can use pairs to get paired scatter plot.
But as to the character variables, how to get the "paired mosaic plot"?
Many thanks.
--
QQ: 1733768559
At 2015-02-07 17:04:26,"Jim Lemon" <drjimlemon at gmail.com>