Re: [R] linear mixed model using lmer

2022-03-15 Thread Jixiang Wu
There is no difference when running anova or t-test. So you shouldn't expect positive variance between batches. On Fri, Mar 4, 2022 at 7:06 PM array chip via R-help wrote: > Thanks Jeff for reminding me that the attachment is removed. I put it in > my google drive if anyone wants to test the da

Re: [R] While using R CMD check: LaTex error: File `inconsolata.sty' not found

2013-09-06 Thread Jixiang Wu
I have been struggling to try many ways with old version of R tools, MikTex, and R versions including R-patached and R-devel, os version (windows 7 and 8), but no luck to pass R CMD check at all. It seems that the missing inconsolata.sty is a key issue to bother so many R users, especially for thos

Re: [R] R v2.13.2 - Cannot find Rcmd on path?

2011-11-14 Thread Jixiang Wu
Path manager has a nice feature. Thanks. While I can see that rcmd is in the path setting, it is still not recognized as an internal command. That is something really confuses me. Jixiang Wu On Mon, Nov 14, 2011 at 11:30 AM, Henrik Bengtsson wrote: > FYI, > > you can use tools suc

[R] model frame problem

2011-10-28 Thread Jixiang Wu
that done. I would greatly appreciate any help. The codes are listed as follows: Jixiang Wu a=c(1:10) b=c(1:10) ab=paste(a,b,sep="*") d1=data.frame(y=rnorm(10),a=a,b=b) ff=y~a+b+a*b d2=model.frame(ff,d1) ## this generate from model.frame d2 d3=data.frame(y=rnorm(10),a=a,b=b,ab=ab