[R] Writing Text into Plots

2006-10-05 Thread Lothar Botelho-Machado
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I have a simple question on the text() method in plots, e.g.: text(3,4,adj=1,cex=1.0, expression(alpha == beta)) I know there exists a lot more like frac(), etc which could be used for expression. But a help(frac) doesn't return any results

Re: [R] Writing Text into Plots

2006-10-05 Thread Lothar Botelho-Machado
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Duncan Murdoch wrote: On 10/5/2006 4:10 PM, Lothar Botelho-Machado wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I have a simple question on the text() method in plots, e.g.: text(3,4,adj=1,cex=1.0, expression(alpha == beta

[R] Can't mix high level and low level plot functions.

2006-09-25 Thread Lothar Botelho-Machado
Hey R-Comunity, I'd like to print out an histogram of some experimental data and add a smooth curve of a normal distribution with an ideally generated population having the same mean and standard deviation like the experimental data. The experimental data is set as vector x and its name is set

Re: [R] Can't mix high level and low level plot functions.

2006-09-25 Thread Lothar Botelho-Machado
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks for your help!! I appreciate, now it works perfectly. Lothar Rubusch Duncan Murdoch wrote: On 9/25/2006 1:56 PM, Lothar Botelho-Machado wrote: Hey R-Comunity, I'd like to print out an histogram of some experimental data and add

Re: [R] Plots Without Displaying

2006-08-17 Thread Lothar Botelho-Machado
Park Suite 5350 Woburn, MA 01801 Tel: 781-938-3830 www.nuverabio.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lothar Botelho-Machado Sent: Wednesday, August 16, 2006 4:49 PM To: r-help@stat.math.ethz.ch Subject: Re: [R] Plots

[R] Plots Without Displaying

2006-08-16 Thread Lothar Botelho-Machado
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 R Help Mailing List, I'd like to generate a plot that I could display and/or store it as e.g. jpeg. But unfortunately always a plotting window opens. Is it possible to prevent that? I tried the following: R bp-boxplot( sample(100), plot=FALSE)

Re: [R] Plots Without Displaying

2006-08-16 Thread Lothar Botelho-Machado
graphics devices, including these. On Wed, 16 Aug 2006, Lothar Botelho-Machado wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 R Help Mailing List, I'd like to generate a plot that I could display and/or store it as e.g. jpeg. But unfortunately always a plotting window opens

[R] How to convert list elements to data.frames or vectors?

2006-08-08 Thread Lothar Botelho-Machado
Dear R mailing-list comunity! I'm currently trying to implement an R method. I have two sets of data that I convert into a data.frame each. These data.frames I'd like to append to a list: # generate a list listTable-list() # add one set of data x-1000 ;y-1 ;listTable[[length(listTable) + 1]]

Re: [R] How to convert list elements to data.frames or vectors?

2006-08-08 Thread Lothar Botelho-Machado
) Lothar Botelho-Machado wrote: Dear R mailing-list comunity! I'm currently trying to implement an R method. I have two sets of data that I convert into a data.frame each. These data.frames I'd like to append to a list: # generate a list listTable-list() # add one set of data x-1000 ;y-1