Re: [R] Defining function help

2014-02-01 Thread Mathew Nagendran
ah, I see! Thanks you for the assistance! I can see how I went wrong. From: arun Sent: Friday, January 31, 2014 2:59 PM To: r-help@r-project.org Cc: Mathew Nagendran Subject: Re: [R] Defining function help Hi, Not sure if this is what you wanted

Re: [R] Defining function help

2014-01-31 Thread arun
Hi, Not sure if this is what you wanted: t.control=function(m, a){(1-exp(-a*m)*((1-(1/30))*m))}   t.sham=function(m, a, d){(1-exp(-a*(1-d)*m)*((1-(1/30))*m))} t.control(2,2) #[1] 0.9645898 t.sham(2,2,0.1) #[1] 0.9471741 A.K. On Friday, January 31, 2014 12:29 PM, Mathew Nagendran wrote: Hello

Re: [R] Defining function help

2014-01-31 Thread Duncan Murdoch
On 31/01/2014 12:29 PM, Mathew Nagendran wrote: Hello everyone. I am quite new to R and I would appreciate some help in figuring out what I am doing wrong. For the following code: > #with cost > > m.control=c(1.45,9.40,9.96,4.2,1.86,0.2) > m.sham=c(3.39,23.94,23.62,10.08,2.99,1.09) > > t.contr