Displaying 20 results from an estimated 2000 matches similar to: "one question about title"
2003 Apr 17
2
HoltWinters() - p-values for alpha, beta and gamma
Need your expertise for the theoretical approach to
deduce the p-values for the level, trend and
seasonality parameters. I wonder if there's source
code available. Thanks group.
Kel
2002 Dec 11
1
Adding a title to a postscript file
I create lots of postscript files which I view with ghostview. The
beginning of the files all begin something like
%!PS-Adobe-3.0
%%DocumentNeededResources: font Helvetica
%%+ font Helvetica-Bold
%%+ font Helvetica-Oblique
%%+ font Helvetica-BoldOblique
%%+ font Symbol
%%DocumentMedia: a4 595 841 0 () ()
%%Title: R Graphics Output
%%Creator: R Software
The consequence is that in ghostview,
2003 Apr 22
4
Default value for title in postscript function
I like the fact that the postscript function enables the possbiility
of a more useful title than before. However, I'd prefer the default
to be the file name.
It's very simple for me to make my own postscript function that does
just that simply by setting title = file. I always use onefile =
TRUE, so it always works (so far). However, I'm a little reluctant to
do that in case some
2003 Apr 22
4
Default value for title in postscript function
I like the fact that the postscript function enables the possbiility
of a more useful title than before. However, I'd prefer the default
to be the file name.
It's very simple for me to make my own postscript function that does
just that simply by setting title = file. I always use onefile =
TRUE, so it always works (so far). However, I'm a little reluctant to
do that in case some
2003 Feb 21
1
more mulitpage postscript problems
Hi,
I posted a while ago about 'overlap' problems using png/jpeg. If what
Patrick Connolly suggests is truly happening, I think the following may be
related.
My new problem is with the following code (the overlap is still there if I
use png() instead of postscript(), compounded by the difficulty described
below):
tmp <- matrix(runif(16000), nrow=16)
2002 Sep 18
2
More on list to data frame (was: Re: List to Data Frame
Hi,
Now suppose I have just one list called FOO, which has 25 objects, e.g.:
[[1]]
1 2 3 4 5
[[2]]
6 7 8 9 10
.
.
.
And I want to do something like:
FRED <- data.frame(cbind(unlist(FOO[[1]]),
unlist(FOO[[2]]),
# ... for all 25 subsets
))
Is it possible to do this, without doing unlist(FOO[[i]]) 25
2000 Aug 14
0
Postscript device bug when more than one page is needed?
It would appear to me that there is a bug in the postscript device
when multiple pages are required. Line widths can be only 1 after the
first page. I have not seen reference to this as a problem before.
test.device <-
function()
{
# looks like the problem is in the postscript device
postscript(file = paste("Test.ps"), horizontal = F)
on.exit(dev.off())
2004 Nov 18
4
Re: changing (core) function argument defaults?
>From: Patrick Connolly <p.connolly@hortresearch.co.nz>
>To: "RenE J.V. Bertin" <rjvbertin@hotmail.com>
>Subject: Re: [R] changing (core) function argument defaults?
>Date: Thu, 18 Nov 2004 11:43:10 +1300
>
>On Wed, 20-Oct-2004 at 07:48PM +0200, RenE J.V. Bertin wrote:
>
>|> Hello,
2004 Nov 18
4
Re: changing (core) function argument defaults?
>From: Patrick Connolly <p.connolly@hortresearch.co.nz>
>To: "RenE J.V. Bertin" <rjvbertin@hotmail.com>
>Subject: Re: [R] changing (core) function argument defaults?
>Date: Thu, 18 Nov 2004 11:43:10 +1300
>
>On Wed, 20-Oct-2004 at 07:48PM +0200, RenE J.V. Bertin wrote:
>
>|> Hello,
2009 Jan 21
2
title: words in different colors?
In ?title I see the
plot(cars, main = "")
title(main = list("Stopping Distance versus Speed", cex=1.5, col="red",
font=3))
I can't seem to generalize this to use several colors in a single title.
What I'd like is
in latex-ish
\red{Hair color} \black{ and } \blue{Eye color}
to serve also as an implicit legend for points that are plotted.
-Michael
--
2003 May 05
1
Matrix manipulation
I have a square matrix wherein a '*' indicates an HSD between the
levels indicated by row name and column name. The '.' is simply
marking the diagonal. A blank indicates the same group
A B C D E F G H I J K L M N
A .
B .
C * * .
D * * .
E * * * .
F * * * .
2005 Nov 06
1
kinship package example data
I've been looking at the kinship package which looks as though it
might be appropriate for my purposes. What I can't find is any
reference to the data that is used in the example code. A dataframe
called d10 with column names, upn, dadid, momid, sex and affect is
required. One can get an idea of what sort of values should be in
most columns from the description in the pedigree function,
2002 Apr 24
2
Changing the colour in boxplots using bwplot()
I've managed to find how to change
trellis.settings$box.rectangle$col
and
trellis.settings$box.umbrella$col
but I can't figure out how to change the colour of the point used
to indicate outliers. There doesn't seem to be a general colour.
What am I overlooking?
best
--
*************************************************************
___ Patrick Connolly
{~._.~}
2008 Jun 10
5
the title is too long for a graph
Hi All,
I have a problem of putting long titles on a graph:
for example,
x= seq(1:100)
y=seq(1:100)
plot(x,y,main="p=0.05:A-B=3,C-D=10,D-E=100,A-F=2,AFR-E=3,ACE-D=1,ADEF-M=0,AED-E=10,DE-F=3,AB-J=4,AC-J=10,ED-F=1,ED-B=4,AF-B=10,CD-S=10,AM-C=4")
R seems not able to print the whole title. The title content might be changing and thus I don't know how long it is beforehand. Is there a
2000 Jul 18
1
Use of adj in axis()
platform i686-pc-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status
major 1
minor 1.0
year 2000
month June
day 15
language R
I'm trying to adjust the tick labels on a vertical axis. I wanted them
to be horizontal instead
2002 Oct 09
1
grid graphics and par settings
I see that adj is not a graphical parameter that can be used in a key
list to use with lattice functions.
Is that because it's not yet implemented in gpar? If so, it could
also explain why it's not available in grid.text.
Is there a work around? Centering looks silly on my plot.
best
--
Patrick Connolly
HortResearch
Mt Albert
Auckland
New Zealand
Ph: +64-9 815 4200 x 7188
2003 May 07
1
Tick labels on y axis in lattice plots
I seem to remember this was discussed a year or two ago, but I can't
find it in the archives.
platform i686-pc-linux-gnu
arch i686
os linux-gnu
system i686, linux-gnu
status
major 1
minor 7.0
year 2003
month 04
day 16
language R
2001 Jan 11
1
Some Packages Won't Run under RH 7
Patrick Connolly wrote:
> According to Richard A. Bilonick:
> |>
> |> I recently installed Red Hat Linux 7.0. I installed Version 1.2.0 (2000-12-15) of
> |> R. I installed a number of packages including chron, date, ellipse, sgeostat,
> |> survival5, and xtable. the "library()" command shows that they are installed.
> |>
> |> chron works but I get
2001 Jan 11
0
ORe: Some Packages Won't Run under RH 7
Patrick Connolly wrote:
> According to Richard A. Bilonick:
> |>
> |> I recently installed Red Hat Linux 7.0. I installed Version 1.2.0 (2000-12-15) of
> |> R. I installed a number of packages including chron, date, ellipse, sgeostat,
> |> survival5, and xtable. the "library()" command shows that they are installed.
> |>
> |> chron works but I get
2003 Apr 22
2
How do I get 10^4 to become 10000?
Of course, that's as trivial as it gets on the command line, but I
can't work out how to get a column of numbers that are entered as
"10^5" from its 'character' format into a numeric one?
I feel a bit embarrassed asking such a simple question. Too much
Easter....
Thanks
--
Patrick Connolly
HortResearch
Mt Albert
Auckland
New Zealand
Ph: +64-9 815 4200 x 7188