[R] Insert R logo

2007-01-20 Thread Arun Kumar Saha
Dear all R users,

I want to insert the R logo in every graphic that I made in my Statistical
analysis using R. Can anyone tell me whether is it possible or not and if
possible how to do this? your help will be highly appreciated.

Thanks and Regards,
Arun

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Insert R logo

2007-01-20 Thread David Barron
I expect you could do something with the addlogo function in the pixmap package.

On 20/01/07, Arun Kumar Saha [EMAIL PROTECTED] wrote:
 Dear all R users,

 I want to insert the R logo in every graphic that I made in my Statistical
 analysis using R. Can anyone tell me whether is it possible or not and if
 possible how to do this? your help will be highly appreciated.

 Thanks and Regards,
 Arun

 [[alternative HTML version deleted]]

 __
 R-help@stat.math.ethz.ch mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.



-- 
=
David Barron
Said Business School
University of Oxford
Park End Street
Oxford OX1 1HP

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Insert R logo

2007-01-20 Thread David Barron
Something like this:

library(pixmap)
# From the addlogo example
x - read.pnm(system.file(pictures/logo.ppm, package=pixmap)[1])
fg - matrix(c(0,1,0,1,0,.05,0,.05), ncol=4, byrow=TRUE)
split.screen(fg)
screen(1)
plot(rnorm(100))
screen(2)
addlogo(x,c(0,1),c(0,1))


On 20/01/07, Arun Kumar Saha [EMAIL PROTECTED] wrote:
 Dear all R users,

 I want to insert the R logo in every graphic that I made in my Statistical
 analysis using R. Can anyone tell me whether is it possible or not and if
 possible how to do this? your help will be highly appreciated.

 Thanks and Regards,
 Arun

 [[alternative HTML version deleted]]

 __
 R-help@stat.math.ethz.ch mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.



-- 
=
David Barron
Said Business School
University of Oxford
Park End Street
Oxford OX1 1HP

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Insert R logo

2007-01-20 Thread Greg Snow
Look at the last example in the help for the subplot function in the 
TeachingDemos package.

-Original Message-
From: Arun Kumar Saha [EMAIL PROTECTED]
To: r-help@stat.math.ethz.ch R-help@stat.math.ethz.ch
Sent: 1/20/07 4:35 AM
Subject: [R] Insert R logo

Dear all R users,

I want to insert the R logo in every graphic that I made in my Statistical
analysis using R. Can anyone tell me whether is it possible or not and if
possible how to do this? your help will be highly appreciated.

Thanks and Regards,
Arun

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.