Re: [R] HELP relevel INTERCEPT-COMPARISONS

2017-10-28 Thread José María Mateos
On Sat, Oct 28, 2017 at 08:11:51PM +, CHIRIBOGA Xavier wrote: treatment<-relevel(treatment,ref="Db") Never used relevel myself, but shouldn't this line be instead this one? T1$treatment <- relevel(T1$treatment, ref = "Db") Cheers, JMM. __ R-he

[R] HELP relevel INTERCEPT-COMPARISONS

2017-10-28 Thread CHIRIBOGA Xavier
Dear colleagues, How can I do to "relevel" the intercept? I need that the treatment "Db" be the intercept, and have p-values for the comparisons with the others treatments. I used the function "relevel" but it did not work out to have what I want. Thanks for your help, Xavier T1 <- read.t

Re: [R] Function Relevel DOE NOT FOUND

2017-10-28 Thread José María Mateos
On Sat, Oct 28, 2017 at 03:25:18PM +, CHIRIBOGA Xavier wrote: Dear Forum, Which functions and packages should be installed to make work the function "relevel"? treatment<-revel(treatment,ref="Db") Error: no se pudo encontrar la funci?n "revel" You have a typo there, it should be "rele

Re: [R] Function Relevel DOE NOT FOUND

2017-10-28 Thread Bert Gunter
Check your spelling: "relevel" not "revel" It's in stats (as well as probably others). Cheers, 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 Sat, Oct

[R] Function Relevel DOE NOT FOUND

2017-10-28 Thread CHIRIBOGA Xavier
Dear Forum, Which functions and packages should be installed to make work the function "relevel"? treatment<-revel(treatment,ref="Db") Error: no se pudo encontrar la funci�n "revel" Thank you very much for your help, Xavier Chiriboga M. PhD Candidate Fundamental and Applied Research in Che

Re: [R] Problem with tq_mutate_xy() from the tidyquant package

2017-10-28 Thread Joshua Ulrich
On Wed, Oct 18, 2017 at 9:54 AM, Eric Berger wrote: > I was able to reproduce the problem with this self-contained example. Maybe > it could be reproduced with an even smaller one ... > Thanks for the reproducible example. > > library(tidyquant) # Loads tidyverse, tidyquant, financial pkgs, xts/

[R] making-a-lisp implementation of R

2017-10-28 Thread Jeremie Juste
Hello, I was trying to make my R implementation of making-a-lisp https://github.com/kanaka/mal/tree/master/ And to my surprise I got stuck in the starting blocks. There is already a mal implementation of R here https://github.com/kanaka/mal/tree/master/r but it uses rdyncall package which is not