[R] ANCOVA

2007-01-06 Thread John Cardinale
Hello, I am analyzing a data set that has possible covariates. It is also multivariate. Are there any R function which can do analysis of covariance? Thanks. John Cardinale [[alternative HTML version deleted]] __ R-help@stat.math.ethz.ch

Re: [R] ANCOVA

2007-01-06 Thread Michael Kubovy
On Jan 6, 2007, at 8:34 AM, John Cardinale wrote: Are there any R function which can do analysis of covariance? ?lm RSiteSearch('ancova') _ Professor Michael Kubovy University of Virginia Department of Psychology USPS: P.O.Box 400400Charlottesville, VA

Re: [R] ANCOVA

2007-01-06 Thread Ramon Diaz-Uriarte
On 1/6/07, Michael Kubovy [EMAIL PROTECTED] wrote: On Jan 6, 2007, at 8:34 AM, John Cardinale wrote: Are there any R function which can do analysis of covariance? ?lm RSiteSearch('ancova') Given the question, you'll probably need to find how to do an ancova with lm. Several documents in

Re: [R] ANCOVA

2007-01-06 Thread Richard M. Heiberger
Please look at the help file ?ancova in the HH package. Please get HH_1.17 which was up on CRAN yesterday. The source file has propagated to the mirrors. As of a few minutes ago, the Windows binary is on cran.at.r-project.org but not yet at the mirrors. Be sure to have history recording on in

[R] ANCOVA in S-plus/R?

2006-06-02 Thread Cindy Yang
Dear R user: I have a question about doing ANCOVA in S-plus or R. I know that many users use lm to do the regression and check the ANCOVA. But is there a way to get the traditional Table form of the ANCOVA test through S-plus (like what we would get from SPSS or SAS)? The

Re: [R] ANCOVA in S-plus/R?

2006-06-02 Thread Richard M. Heiberger
To get the ANCOVA table you need to look at the anova() function. The variables T and L must be factors to get the multi-degree-of-freedom anova tables you are looking for. Order matters. You get the same residual, but the sequential sums of squares differ. bt.aov - aov(E ~ B + T)

Re: [R] ANCOVA, Ops.factor, singular fit???

2006-05-20 Thread Peter Dalgaard
[EMAIL PROTECTED] writes: I'm trying to perform ANCOVAs in R 1.14, on a Mac OS X, but I can't figure out ?! There's no version 1.14 of R. what I am doing wrong. Essentially, I'm testing whether a number of quantitative dental measurements (the response variables in each ANCOVA) show sexual

Re: [R] ANCOVA, Ops.factor, singular fit???

2006-05-20 Thread Marc Schwartz
On Sat, 2006-05-20 at 08:36 +0200, Peter Dalgaard wrote: [EMAIL PROTECTED] writes: I'm trying to perform ANCOVAs in R 1.14, on a Mac OS X, but I can't figure out ?! There's no version 1.14 of R. Looking at the Mac page on CRAN, I suspect that this is the GUI version number, rather than

[R] ANCOVA, Ops.factor, singular fit???

2006-05-19 Thread rebecca . sealfon
I'm trying to perform ANCOVAs in R 1.14, on a Mac OS X, but I can't figure out what I am doing wrong. Essentially, I'm testing whether a number of quantitative dental measurements (the response variables in each ANCOVA) show sexual dimorphism (the sexes are the groups) independently of the

Re: [R] ANCOVA with random factor

2006-03-20 Thread Spencer Graves
I don't understand: I just ran the first example in the aov help page, and it produced F ratios and p values. If this does not answer your question, I suggest you read Pinheiro and Bates (2000) Mixed-Effects Models in S and S-Plus (Springer) if you haven't already and try

[R] ANCOVA with random factor

2006-03-15 Thread David Semmens
I would like to know if there is a way of directly calculating the F-ratio of a random effect using the aov function. I have 2 factors in my model, population which is random and length which is the length of female fish within each population. The dependent variable is diam which is the

Re: [R] ANCOVA Post-hoc test

2005-12-18 Thread Spencer Graves
What search terms did you use? Have you considered the multcomp and multtest packages? spencer graves p.s. If you'd like more help from this list, I suggest you read the posting guide! www.R-project.org/posting-guide.html. Anecdotal evidence suggests that posts more closely

[R] ANCOVA Post-hoc test

2005-12-14 Thread Nicolas Poulet
Hello, Despite my search, I didn't find a post-hoc test for an ANCOVA. I used the functions aov() and lm() to run the ANCOVA then I tried TukeyHSD() but it didn't work (because of the covariable is a continuous variable?). Furthermore, I would like to plot the adjusted values (i.e. the values

Re: [R] Ancova and lme use

2005-12-07 Thread Spencer Graves
Mon cher M. MENICACCI: It looks to me like you ultimately want to use lmer in library(lme4) [which also requires library(Matrix)]. For documentation, I suggest you start with Doug Bates (2005) Fitting Linear Mixed Models in R, R News, vol. 5/1: 27-30 (available from

[R] Ancova and lme use

2005-12-02 Thread a . menicacci
Dear R-users, We expect to develop statistic procedures and environnement for the computational analysis of our experimental datas. To provide a proof of concept, we plan to implement a test for a given experiment. Its design split data into 10 groups (including a control one) with 2 mesures

RE: [R] ANCOVA

2004-08-28 Thread John Fox
] Subject: [R] ANCOVA Dear R-help list, I am attempting to understand the proper formulation of ANCOVA's in R. I would like to test both parallelism and intercept equality for some data sets, so I have generated an artificial data set to ease my understanding. This is what I have done

[R] ANCOVA

2004-08-27 Thread Matt Oliver
Dear R-help list, I am attempting to understand the proper formulation of ANCOVA's in R. I would like to test both parallelism and intercept equality for some data sets, so I have generated an artificial data set to ease my understanding. This is what I have done #Limits of random error added

[R] ANCOVA when you don't know factor levels

2004-03-17 Thread Rob Knell
Hello people I am doing some thinking about how to analyse data on dimorphic animals - where different individuals of the same species have rather different morphology. An example of this is that some male beetles have large horns and small wings, and rely on beating the other guys up to

RE: [R] ANCOVA when you don't know factor levels

2004-03-17 Thread Liaw, Andy
This sounds like a good case for mixture regression, for which there's Fritz Leisch's `flexmix' package. However, I don't think flexmix has facility for testing whether the mixture has one vs. two components. Others on the list surely would know more than I do. HTH, Andy From: Rob Knell