Re: [R] help with my sloppy syntax

2008-08-14 Thread Charles Annis, P.E.
-Original Message- From: Patrick Burns [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2008 1:19 PM To: [EMAIL PROTECTED] Subject: Re: [R] help with my sloppy syntax You need to look again at what you were told to try. Hint: 'c' is not 'list'. Patrick Burns [EMAIL PROTE

Re: [R] help with my sloppy syntax

2008-08-14 Thread Charles Annis, P.E.
ursday, August 14, 2008 11:48 AM To: Charles Annis, P.E. Cc: r-help@r-project.org; [EMAIL PROTECTED] Subject: Re: [R] help with my sloppy syntax On Thu, 14 Aug 2008, Charles Annis, P.E. wrote: > Thank you Professor Ripley: > >> From your response it is clear that I left out something

Re: [R] help with my sloppy syntax

2008-08-14 Thread Prof Brian Ripley
es Annis, P.E. Cc: r-help@r-project.org; [EMAIL PROTECTED] Subject: Re: [R] help with my sloppy syntax Try c(as.list(par), a.hat.decision, et cetera ...) We are guessing what any of these are, of course. On Thu, 14 Aug 2008, Charles Annis, P.E. wrote: R-ians: After some effort I coerced

Re: [R] help with my sloppy syntax

2008-08-14 Thread Charles Annis, P.E.
tisticalEngineering.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Prof Brian Ripley Sent: Thursday, August 14, 2008 11:20 AM To: Charles Annis, P.E. Cc: r-help@r-project.org; [EMAIL PROTECTED] Subject: Re: [R] help with my sloppy syntax Try c(as.list(par),

Re: [R] help with my sloppy syntax

2008-08-14 Thread Christos Hatzis
Sent: Thursday, August 14, 2008 11:11 AM > To: r-help@r-project.org > Cc: [EMAIL PROTECTED] > Subject: [R] help with my sloppy syntax > > R-ians: > > After some effort I coerced my code to do what I want but my > syntax is a kludge. Suggestions on more elegant syntax?

Re: [R] help with my sloppy syntax

2008-08-14 Thread Prof Brian Ripley
Try c(as.list(par), a.hat.decision, et cetera ...) We are guessing what any of these are, of course. On Thu, 14 Aug 2008, Charles Annis, P.E. wrote: R-ians: After some effort I coerced my code to do what I want but my syntax is a kludge. Suggestions on more elegant syntax? par

[R] help with my sloppy syntax

2008-08-14 Thread Charles Annis, P.E.
R-ians: After some effort I coerced my code to do what I want but my syntax is a kludge. Suggestions on more elegant syntax? par <- NIM.results$par do.call("Draw.NIM.POD.curve", list(par[1], par[2], par[3], par[4], par[5], a.hat.decision, et cetera ... It seems that