Re: [R] Supercripting text

2010-05-11 Thread David Winsemius
nt specified in the function() command. -Original Message----- From: Kevin Coombes [mailto:kevin.r.coom...@gmail.com] Sent: Monday, May 10, 2010 12:08 PM To: Shang Gao Cc: r-help@r-project.org Subject: Re: [R] Supercripting text You probably want to write your own titling function to add su

Re: [R] Supercripting text

2010-05-11 Thread Shang Gao
("stuff",""^1, " "^2, " "^3 text(1,0.5,ourtitle("stuff",1:3)) -Original Message- From: Kevin Coombes [mailto:kevin.r.coom...@gmail.com] Sent: Monday, May 10, 2010 1:02 PM To: Shang Gao Cc: r-help@r-project.org Subject: Re: [R] Supercripting tex

Re: [R] Supercripting text

2010-05-10 Thread Shang Gao
#x27;t read the character string in the argument specified in the function() command. -Original Message- From: Kevin Coombes [mailto:kevin.r.coom...@gmail.com] Sent: Monday, May 10, 2010 12:08 PM To: Shang Gao Cc: r-help@r-project.org Subject: Re: [R] Supercripting text You probably want

Re: [R] Supercripting text

2010-05-10 Thread Kevin Coombes
...@gmail.com] Sent: Monday, May 10, 2010 12:08 PM To: Shang Gao Cc: r-help@r-project.org Subject: Re: [R] Supercripting text You probably want to write your own titling function to add superscripts. The following code will serve as a reasonable starting point: # make the title expression o

Re: [R] Supercripting text

2010-05-10 Thread Kevin Coombes
You probably want to write your own titling function to add superscripts. The following code will serve as a reasonable starting point: # make the title expression ourtitle <- function(title, footnotes=NULL) { if (length(footnotes) > 0) { fn <- paste(footnotes, collapse=' ') title <- eva

[R] Supercripting text

2010-05-10 Thread Shang Gao
Dear R users, I recently developed a plotting function in R and introduced it to my coworkers. The function is designed to make plotting easier and more efficient, which will in turn be more cost-effective for the company. The reviews for the function have been positive thus far, except for one