Re: [R] "Patched " version listed on CRAN mirrors is actually Oct RC version

2016-12-21 Thread Berend Hasselman
> On 21 Dec 2016, at 14:23, Watson, David W. (MSFC-ES62) > wrote: > > I have been trying to download the “patched” version of 3.3.2 for Mac from > CRAN, but the version that gets delivered is actually the October Release > Candidate version, > (R version 3.3.2 RC (2016-10-26 r71594). It has b

Re: [R] Is it possible to create such graph - Which packages can come handy?

2016-12-21 Thread MacQueen, Don
It's certainly possible, and you don't need any packages to do it; you can do it all in base R. You can use the findInterval() function to identify which points are in which ranges. Here's an example: > x <- runif(16, 20, 30) > xc <- seq(20, 30, by=2) > xc [1] 20 22 24 26 28 30 > findInterval(x

Re: [R] R Statistical Application - Windows 10

2016-12-21 Thread Duncan Murdoch
On 21/12/2016 1:23 PM, McKee, Kevin wrote: To whom it may concern: I am trying to verify the oldest version of the R Statistical Application that is compatible with Windows 10. Thanks in advance for any information you can provide. They are all available for download from CRAN back to 2004, w

[R] R Statistical Application - Windows 10

2016-12-21 Thread McKee, Kevin
To whom it may concern: I am trying to verify the oldest version of the R Statistical Application that is compatible with Windows 10. Thanks in advance for any information you can provide. Best regards, Kevin McKee Consultant - TEKsystems [[alternative HTML version deleted]] _

Re: [R] Would like to practice running ecological data & R code

2016-12-21 Thread MacQueen, Don
There is also the R-sig-eco mailing list. -Don -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore, CA 94550 925-423-1062 On 12/20/16, 6:17 PM, "R-help on behalf of Bert Gunter" wrote: You might want to start here: https://cran.r-project.org/

[R] R implementation of the Split and Merge Algorithm

2016-12-21 Thread Sam Albers
Hello there, I am wondering if anyone on this list has ever encountered an implementation of the Split and Merge algorithm for R. This algorithm is reasonably well known and was first developed in this paper: https://www.computer.org/csdl/trans/tc/1974/08/01672634-abs.html >From that paper here

Re: [R] Power of t test for unequal variances?

2016-12-21 Thread Mauricio Cornejo via R-help
David, I was not aware I could search through the list of available packages.  Thanks very much for the tip. Regarding your guidance that my question may not have been appropriate for R-help as it may not have been specifically an R question ... since it seemed like an R question to me, are ther

Re: [R] Error using nlme; Malformed factors

2016-12-21 Thread Bert Gunter
You may do better (faster, more knowledgeable responses) posting on the r-sig-mixed-models list. -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue,

Re: [R] Is it possible to create such graph - Which packages can come handy?

2016-12-21 Thread Narendra Modi
Thanks Jean, let me have a look! On Tue, Dec 20, 2016 at 9:49 AM, Adams, Jean wrote: > You might find the code in this blog post helpful. > http://theanalyticalminds.blogspot.com/2015/03/part-3a-plotting-with-ggplot2.html > > Scroll down to "Analysing the temperature by month - violin geom with

Re: [R] Power of t test for unequal variances?

2016-12-21 Thread Mauricio Cornejo via R-help
Gerrit, thanks for the suggestion.  samplesize::n.ttest does seem to handle unequal variances. On Tuesday, December 20, 2016 2:55 AM, Gerrit Eichner wrote: Hello, Mauricio, maybe pwr.t2n.test() in package pwr or/and n.ttest() in package samplesize do what you need/want.   Hth  --  Ge

[R] Plot Cubist Tree

2016-12-21 Thread Abhinav Piplani
Hi, I know its been a long time, but any update on this ? Regards Abhinav Piplani Data Science Associate ZS Associates India Pvt. Ltd. Tower A4, DLF WORLD TECH PARK Sector-30, NH-8, Gurgaon 122002, Haryana, India T | +91 124 675 3430 www.zs.com ZS Impact where it matters.

[R] "Patched " version listed on CRAN mirrors is actually Oct RC version

2016-12-21 Thread Watson, David W. (MSFC-ES62)
I have been trying to download the “patched” version of 3.3.2 for Mac from CRAN, but the version that gets delivered is actually the October Release Candidate version, (R version 3.3.2 RC (2016-10-26 r71594). It has been doing this since 3.3.2 has been released. Is there a real patched version s

[R] Error using nlme; Malformed factors

2016-12-21 Thread Wong Yoke Yong
HI all, I am using the nlme package to learn multilevel models, and following examples from the textbook "Discovering Statistics Using R" when it happened. [Mixed Models Code][1] The data set is Honeymoon Period.dat, also downloadable under their companion website. [Data Set - Multilevel Models