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]]
I expect you could do something with the addlogo function in the pixmap package. On 20/01/07, Arun Kumar Saha <arun.kumar.saha at gmail.com> 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 at 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
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 <arun.kumar.saha at gmail.com> 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 at 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
Look at the last example in the help for the subplot function in the TeachingDemos package. -----Original Message----- From: "Arun Kumar Saha" <arun.kumar.saha at gmail.com> To: "r-help at stat.math.ethz.ch" <R-help at 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 at 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.