Re: [R] Is there paid support for R?

2010-08-02 Thread Matt Aldridge
Thanks for the message Raghu. We do indeed provide R support to a wide variety of customers. I have sent a message directly to Chris. Thanks Matt Mango Solutions Hadley Wickham, Creator of ggplot2 - first time teaching in the UK. 1st - 2nd November 2010. To book your seat please go to http://ma

Re: [R] LondonR July Meeting

2010-07-08 Thread Matt Aldridge
Hi Raghu, I'm not sure which link isn't working but I can confirm we have registered you for the event. Anyone else wishing to register can email lond...@mango-solutions.com See you next Tuesday Thanks Matt -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r

Re: [R] How should i change the SAS Codes into R Codes?

2009-07-27 Thread Matt Aldridge
singleSim <- expand.grid(se = 0:100/100, sp = 0:100/100, DR = 0:100/100) singleSim <- within(singleSim, { TR <- (DR+sp-1)/(se+sp-1+1.0e-12) AdjustFactor <- TR/(DR+1.0e-12) }) sampleData <- subset(singleSim, DR == .02 & sp == 1) write.csv(sampleData, "output.csv") Hope this helps