Re: [R] R-help

2004-02-12 Thread Frank E Harrell Jr
On Thu, 12 Feb 2004 12:12:01 +0100 Jim Gustafsson [EMAIL PROTECTED] wrote: Hi, I have a problem. I would like to put my SAS-code into R. Could I do that, if yes, how? Best regards Jim Gustafsson Just reverse the procedure you use when you put R code into SAS. ;) --- Frank E Harrell

RE: [R] R-help

2004-02-12 Thread Liaw, Andy
[Sorry. Just can't resist...] Probably quite easy. Something like: system(sas mysascode.sas) Andy From: Jim Gustafsson Hi, I have a problem. I would like to put my SAS-code into R. Could I do that, if yes, how? Best regards Jim Gustafsson

Re: [R] R-help

2004-02-12 Thread Marc Schwartz
On Thu, 2004-02-12 at 06:36, Frank E Harrell Jr wrote: On Thu, 12 Feb 2004 12:12:01 +0100 Jim Gustafsson [EMAIL PROTECTED] wrote: Hi, I have a problem. I would like to put my SAS-code into R. Could I do that, if yes, how? Best regards Jim Gustafsson Just reverse the

RE: [R] R-help

2004-02-12 Thread partha_bagchi
/12/2004 08:17 AM To: 'Jim Gustafsson' [EMAIL PROTECTED], [EMAIL PROTECTED] cc: Subject:RE: [R] R-help [Sorry. Just can't resist...] Probably quite easy. Something like: system(sas mysascode.sas) Andy From: Jim Gustafsson Hi, I have a problem. I

Re: [R] R-help

2004-02-12 Thread Ted Harding
On 12-Feb-04 Marc Schwartz wrote: Jim, just for clarification, do you truly mean the SAS *code* or did you mean the SAS *dataset*? If the former, as you are probably picking up, no go. There is no direct translation. It would be like expecting a C compiler to compile Fortan code. Been

Re: [R] R-help login page error

2003-10-23 Thread Martin Maechler
Héctor == Héctor Villafuerte D [EMAIL PROTECTED] on Tue, 21 Oct 2003 17:29:27 -0800 writes: Héctor Hi all, Héctor I'm trying to access my account at Héctor https://www.stat.math.ethz.ch/mailman/options/r-help Héctor but the following appears: Héctor *Error:

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

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

Re: [R] R-help Digest, Vol 4, Issue 27 ( -Reply)

2003-06-28 Thread Peter Dalgaard BSA
Leo Wang-Kit Cheung [EMAIL PROTECTED] writes: Hi, I am out of town and will get back to you on the 13th of July. Leo [EMAIL PROTECTED] 06/27/03 00:32 Send R-help mailing list submissions to [EMAIL PROTECTED] To subscribe or unsubscribe via the World Wide Web, visit

RE: [R] R help: Correlograms

2003-06-06 Thread Hotz, T.
I have time series and need to draw simple and partial correlograms with associated Q-statistics (the same as in EViews). Can I do it in R? Thanks library(ts) contains functions acf and pacf which come with corresponding plot methods. See their help pages for details. I don't know anything

RE: [R] R help: Correlograms

2003-06-06 Thread Pfaff, Bernhard
Hello, I have time series and need to draw simple and partial correlograms with associated Q-statistics (the same as in EViews). Can I do it in R? Thanks Hello Shutnik, see ?Box.test in the ts-package for Q-statistics. To my knowledge a plot function as in EViews (left-hand panel are ACFs

Re: [R] R help: correlograms

2003-03-25 Thread John Fox
Dear Max, See the acf and pacf functions in the ts package. John At 04:50 PM 3/25/2003 +0200, Max Moldovan wrote: Where I can find tools for drawing correlograms (graphical representations of autocorrelation and partial autocorrelation functions)?

RE: [R] r-help using random generating

2003-03-19 Thread Wiener, Matthew
You can save some time by generating all your samples at one time: t1 - matrix(rnorm(5 * n, 100, 10), nc = n) apply(t1, 2, mean) (Or use colVars and colMeans to save even more time) Hope this helps, Matt Wiener -Original Message- From: Cheryl H. [mailto:[EMAIL PROTECTED] Sent:

Re: [R] r-help using random generating

2003-03-18 Thread Murray Jorgensen
Student Exercise?! Cheryl H. wrote: To whom it may concern: Given that my sample size is n, my mean is 100, and my sd is 10, I need to use a random number generator (which I believe is the function rnorm(5,100,10)), but I need to repeat it a large number of times, and then plot the sampling

RE: [R] r-help using random generating

2003-03-18 Thread Adaikalavan Ramasamy
the values into the vector. Then a simple plot() should suffice. Since it is a simple problem, I will leave you to it. -Original Message- From: Murray Jorgensen [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 12:39 PM Cc: [EMAIL PROTECTED] Subject: Re: [R] r-help using random

RE: [R] R help

2003-03-13 Thread Mkinen Jussi
Try (run..): rnorm(1, 0, 1) # (or in this case rnorm(1) - check ?rnorm) aaa - function(x) x + 1 aaa(1) ?.First Regards, Jussi -Original Message- From: Petr Pikal [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 9:45 AM To: Shutnik Cc: [EMAIL PROTECTED] Subject: Re: [R] R

RE: [R] R help

2003-03-12 Thread Pfaff, Bernhard
Dear friends, I work with Matlab and now a bit in trouble with getting used to R. Could you give me some help with the following questions: 1. how to generate the random matrix mxn with constant mean and variance, say N(0,1)? 2. how to create a code (function), say myfunction, and make it

Re: [R] R help

2003-03-12 Thread Petr Pikal
Hi On 12 Mar 2003 at 15:45, Shutnik wrote: Dear friends, I work with Matlab and now a bit in trouble with getting used to R. Could you give me some help with the following questions: 1. how to generate the random matrix mxn with constant mean and variance, say N(0,1)? 2. how to

Re: [R] r-help-bounces and r-devel-bounces e-mail?

2003-03-04 Thread Jeff Gentry
Any clues? I just noticed that my e-mail filter rule suddenly stopped putting these messages in their respective folders this morning (my time). I believe they're upgrading the Mailman software that runs the list. __ [EMAIL PROTECTED] mailing list

RE: [R] r-help-bounces and r-devel-bounces e-mail?

2003-03-04 Thread Marc Schwartz
-Original Message- From: Charles Annis, P.E. [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 11:06 AM To: 'Jeff Gentry'; 'Marc Schwartz' Cc: [EMAIL PROTECTED] Subject: RE: [R] r-help-bounces and r-devel-bounces e-mail? You need to add [EMAIL PROTECTED] to your filtering rules

Re: [R] r-help-bounces and r-devel-bounces e-mail?

2003-03-04 Thread Martin Maechler
JeffG == Jeff Gentry [EMAIL PROTECTED] on Tue, 4 Mar 2003 11:53:13 -0500 (EST) writes: Any clues? I just noticed that my e-mail filter rule suddenly stopped putting these messages in their respective folders this morning (my time). JeffG I believe they're upgrading the

RE: [R] r-help-bounces and r-devel-bounces e-mail?

2003-03-04 Thread Marc Schwartz
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martin Maechler Sent: Tuesday, March 04, 2003 11:42 AM To: [EMAIL PROTECTED] Subject: Re: [R] r-help-bounces and r-devel-bounces e-mail? JeffG == Jeff Gentry [EMAIL PROTECTED] on Tue, 4 Mar 2003 11

<    1   2