[R] R MSI Installer

2015-04-24 Thread billy am
Hi Everyone , Is there a place where I can download msi installer for latest version of R? Thanks Billy [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman

Re: [R] ggplot: connect points with line (not in order)

2015-04-05 Thread billy am
Will this do? ggplot(mydat,aes(xx,yy)) + geom_path() >From : >http://stackoverflow.com/questions/15706281/controlling-order-of-points-in-ggplot2-in-r -- | http://billyam.com || http://use-r.com || http://shinyse

Re: [R] RSQLite will not install in R 2.15.0

2015-03-21 Thread billy am
day09 svn rev67962 language R version.string R version 3.1.3 (2015-03-09) nickname Smooth Sidewalk > nstall.packages("RSQLite") Error: could not find function "nstall.packages" > install.packages("RSQLite") Installing package into

Re: [R] Which is better: Modifying an existing package or creating a new one?

2015-03-19 Thread billy am
I would second that. -- | http://billyam.com || http://use-r.com || http://shinyserver.com (BETA) SAS Certified Base Programmer for SAS 9 Oracle SQL Expert(11g) On Thu, Mar 19, 2015 at 4:39 PM, Thierry Onkelinx

Re: [R] R for organization

2015-01-11 Thread billy am
Actually I would be interested to know which are the organisations that does not allow R. -- | http://billyam.com || http://use-r.com || http://shinyserver.com (BETA) SAS Certified Base Programmer for SAS 9 Oracl

Re: [R] R vs. RStudio?

2015-01-10 Thread billy am
I concur. Pls try it. -- | http://billyam.com || http://use-r.com || http://shinyserver.com (BETA) SAS Certified Base Programmer for SAS 9 Oracle SQL Expert(11g) On Sun, Jan 11, 2015 at 10:47 AM, John Sorkin

Re: [R] New to R

2014-12-15 Thread billy am
Hi , As the OP was asking for examples , I would also recommend "Modeling Techniques in Predictive Analytics" by Thomas Miller. That book is full of examples + R scripts. Its on Amazon. Regards Billy -

Re: [R] Removing description from lm()

2014-10-06 Thread billy am
Hi David , coef alone won't do as it still contains the description. As per the example in ?coef shows , > x <- 1:5; coef(lm(c(1:3, 7, 6) ~ x))(Intercept) x -0.7 1.5 Unless I use cat again , > x <- 1:5; cat(coef(lm(c(1:3, 7, 6) ~ x))[1])-0.7 Thanks

Re: [R] Removing description from lm()

2014-10-05 Thread billy am
Thats it! Most splendid! Thanks! The final result, just the value alone , for future reference. > x <- c(1,5,3,1)> y <- c(5,8,2,3)> lm(x~y)$coefficient[1](Intercept) 0.5714286 > cat(lm(x~y)$coefficient[1])0.5714286 > Thanks everyone! Regards Billy On Sun, Oc

Re: [R] Removing description from lm()

2014-10-05 Thread billy am
t)"](Intercept) 0.5714286 > On Sun, Oct 5, 2014 at 9:09 PM, Uwe Ligges wrote: > > > On 05.10.2014 15:02, Duncan Murdoch wrote: > >> On 05/10/2014, 7:21 AM, billy am wrote: >> >>> Hi , >>> >>> When I run the following code , I get both the des

[R] Removing description from lm()

2014-10-05 Thread billy am
y 0.5714 0.4286 > lm(x~y)$coefficient[1](Intercept) 0.5714286 > Regards Billy [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posti

Re: [R] A new environment within the main function

2014-09-22 Thread billy am
Hi Everyone , Thanks for the input. On Mon, Sep 22, 2014 at 6:48 AM, David Winsemius wrote: > > On Sep 21, 2014, at 6:06 AM, billy am wrote: > > Hi Everyone , >> >> I am having an issue with the following code and would need kind >> assistant. >> >&g

[R] A new environment within the main function

2014-09-21 Thread billy am
ssign("x2",x,envir = as.environment(ee)) x3 <- get("x2" , envir = as.environment(ee)) if(t == 10) { if(g == 8) { data.fr <- groupedData(y~-1 + x3 | g, data=data.frame(y,x3,h, dummy)) } } } Thanks

[R] Rmarkdown Installation error on Shiny server , CentOS 6.4 x64

2014-08-03 Thread billy am
linux-gnu system x86_64, linux-gnu status major 3 minor 1.0 year 2014 month 04 day10 svn rev65387 language R version.string R version 3.1.0 (2014-04-10) nickname Spring Dance Regards Billy

Re: [R] generate random numbers for lotteries

2012-04-29 Thread billy am
turn z } something like that? No idea about the third part though. regards Billy On Sun, Apr 29, 2012 at 9:29 AM, Mike Miller wrote: > On Fri, 27 Apr 2012, Vale Fara wrote: > > I am working with lotteries and I need to generate two sets of uniform >> random numbers. >> >

Re: [R] comparing mixed binomial model against the same model without random effect

2011-09-24 Thread Billy
Hello Simone, Given that your response variable is binary and, consequently, you should use generalized models, just occurs to me a comparison between a Generalized Linear Model (the model without the random effect) and a Generalized Linear Mixed Model (the model with the random effect). You coul

Re: [R] Bayesian functions for mle2 object

2011-09-05 Thread Billy
c1) + (c0 * w ^ c2) ? In which c0, c1, and c2 are constant parameters, and x and w are different predictor variables. Thanks again Billy On Mon, Aug 29, 2011 at 3:50 PM, Ben Bolker wrote: > Billy.Requena gmail.com> writes: > > > > > Hi everybody, > > > > I'

Re: [R] Possible to "add" filled.contour(...) to existing plot?

2010-11-20 Thread Billy
Hi Jason! I have suggested in another post how to plot more than one filled.contour graph at the same device. Maybe you could adapt that script to you specific problem. Look my suggestion at: http://r.789695.n4.nabble.com/several-Filled-contour-plots-on-the-same-device-td819040.html#a2332041 --