Re: [R] Tukey Test

2019-01-24 Thread AbouEl-Makarim Aboueissa
check this: https://www.r-graph-gallery.com/84-tukey-test/ abou __ *AbouEl-Makarim Aboueissa, PhD* *Professor, Statistics and Data Science* *Graduate Coordinator* *Department of Mathematics and Statistics* *University of Southern Maine* On Thu, Jan 24, 2019 at 10:51 PM

Re: [R] [FORGED] Tukey Test

2019-01-24 Thread Richard M. Heiberger
and the mmcplot in the HH package which plots the results from the multcomp package. On Thu, Jan 24, 2019 at 11:14 PM Rolf Turner wrote: > > > On 1/25/19 4:51 PM, reichm...@sbcglobal.net wrote: > > > R-Help > > > > > > > > There is an R library that will perform a Tukey test ... > > > > Surely

Re: [R] [FORGED] Tukey Test

2019-01-24 Thread Rolf Turner
On 1/25/19 4:51 PM, reichm...@sbcglobal.net wrote: R-Help There is an R library that will perform a Tukey test ... Surely you mean *package*. cheers, Rolf Turner P.S. You are probably thinking of the agricolae *package*. There is also the TukeyC package, which might be

Re: [R] Tukey Test

2019-01-24 Thread Bert Gunter
In the age of google, Search! e.g. on "tukey test" at rseek.org -- 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 Thu, Jan 24, 2019 at 7:51 PM wrote:

[R] Tukey Test

2019-01-24 Thread reichmanj
R-Help There is an R library that will perform a Tukey test which prints out the Tukey groups (A, B, C, etc) and I don't recall the library. It was agriculture or something like that. And is there a library that will product the Tukey, Bonferonni, Scheffe, and Dunnett comparison tables?

[R-es] Cómo graficar una superficie de respuesta en r

2019-01-24 Thread Alberto José Bazán Ferrando
Buenas tardes estimados amigos, Alguien me puede ayudar indic�ndome c�mo hacer para obtener un gr�fico de superficie para un modelo de regresi�n en 3D. Con el siguiente script he obtenido el modelo y ahora quiero asignarle valores a las variables y graficar la respuesta en 3D: > Modelo1 <-

[R] [R-pkgs] MANOVA for collinear responses with rotation testing (ffmanova) + Synthetic data (RegSDC)

2019-01-24 Thread Langsrud , Øyvind
Hi, Package ffmanova originally released on CRAN in 2006 has now been updated to Version 1.0. It has been a stable working horse and the changes are cosmetic. Package RegSDC (Version: 0.2.0) is a new package on CRAN. The two packages are theoretically related and both make use of conditioned

Re: [R] Function in default parameter value closing over variables defined later in the enclosing function

2019-01-24 Thread Jeff Newmiller
My objection to this design pattern is that this gives the default implementation of inside an ability that cannot be altered using functions provided by the caller. You might think this is what you want now but it has the potential to render the code unreusable in the future, which renders the

Re: [R] Function in default parameter value closing over variables defined later in the enclosing function

2019-01-24 Thread Ivan Krylov
Dear Jan & Duncan, Thanks for your replies! On Wed, 23 Jan 2019 09:56:25 -0500 Duncan Murdoch wrote: > Defaults of variables are evaluated in the evaluation frame of the > call. So the inside() function is created in the evaluation frame, > and it's environment will be that frame. > When it