[R] R-help: beginner question

2003-08-28 Thread Monica Palaseanu-Lovejoy
Hi, I am a beginner user of R. I have a trivial question – I am almost ashamed I cannot figure it out does not matter how many times I am reading the help. I have a table in .txt format, tab delimited. I can read it with ‘read.delim()’ with no problems. Afterwards I would like to use boxplot

Re: [R] R-help: beginner question

2003-08-28 Thread Douglas Bates
Monica Palaseanu-Lovejoy [EMAIL PROTECTED] writes: I am a beginner user of R. I have a trivial question – I am almost ashamed I cannot figure it out does not matter how many times I am reading the help. I have a table in .txt format, tab delimited. I can read it with ‘read.delim()’ with

[R] R-help: beginner question - Thank you! OUTLIERS

2003-08-28 Thread Monica Palaseanu-Lovejoy
Hi, Thank you so much for all your rapid answers. I am impressed. What i didn't know was that i have to assign my data to an object to work further on. It was not clear from the help (at least for me) that 'data()' itself is calling data already in R packages. All of you make that clear.

Re: [R] R-help: beginner question

2003-08-28 Thread Peter Dalgaard BSA
Monica Palaseanu-Lovejoy [EMAIL PROTECTED] writes: Hi, I am a beginner user of R. I have a trivial question – I am almost ashamed I cannot figure it out does not matter how many times I am reading the help. I have a table in .txt format, tab delimited. I can read it with

Re: [R] R-help: beginner question

2003-08-28 Thread James MacDonald
If you read the data into a data frame, you should be able to simply pass the name of the data frame in a call to boxplot. my.data - read.delim(mytext.txt) boxplot(my.data) If you only want a boxplot of column 5 boxplot(my.data[,5]) See ?boxplot for other options to make the boxplot look the

Re: [R] R-help: beginner question - Thank you! OUTLIERS

2003-08-28 Thread Spencer Graves
Have you considered normal probability plots (qqnorm) to identify outliers? These will identify much more, of course, including the need for transformations, mixtures of distributions, etc. hope this helps. spencer graves Monica Palaseanu-Lovejoy wrote: Hi, Thank you so much for all your

Re: [R] R-help: beginner question

2003-08-28 Thread Patrick Burns
A Guide for the Unwilling S User would help orient you to how R works. It is meant to do that as quickly and painlessly as possible. Patrick Burns Burns Statistics [EMAIL PROTECTED] +44 (0)20 8525 0696 http://www.burns-stat.com (home of S Poetry and A Guide for the Unwilling S User) Monica