En innebygd og tegnsett-uspesifisert tekst ble skilt ut... Navn: ikke tilgjengelig Nettadresse: https://stat.ethz.ch/pipermail/r-help/attachments/20080212/d6012c8f/attachment.pl
?aov ?anova ------------------------------------------------------------------------ ---- ir. Thierry Onkelinx Instituut voor natuur- en bosonderzoek / Research Institute for Nature and Forest Cel biometrie, methodologie en kwaliteitszorg / Section biometrics, methodology and quality assurance Gaverstraat 4 9500 Geraardsbergen Belgium tel. + 32 54/436 185 Thierry.Onkelinx op inbo.be www.inbo.be Do not put your faith in what statistics say until you have carefully considered what they do not say. ~William W. Watt A statistical analysis, properly conducted, is a delicate dissection of uncertainties, a surgery of suppositions. ~M.J.Moroney -----Oorspronkelijk bericht----- Van: r-help-bounces op r-project.org [mailto:r-help-bounces op r-project.org] Namens Kes Knave Verzonden: dinsdag 12 februari 2008 14:54 Aan: r-help op r-project.org Onderwerp: [R] How to run one-way anova R? Dear all, How do I run a basic one-way anova in R? Regards Kes [[alternative HTML version deleted]] ______________________________________________ R-help op r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
look at the online help file for ?aov(). Best, Dimitris ---- Dimitris Rizopoulos Ph.D. Student Biostatistical Centre School of Public Health Catholic University of Leuven Address: Kapucijnenvoer 35, Leuven, Belgium Tel: +32/(0)16/336899 Fax: +32/(0)16/337015 Web: http://med.kuleuven.be/biostat/ http://www.student.kuleuven.be/~m0390867/dimitris.htm ----- Original Message ----- From: "Kes Knave" <kestrel78 at gmail.com> To: <r-help at r-project.org> Sent: Tuesday, February 12, 2008 2:54 PM Subject: [R] How to run one-way anova R?> Dear all, > > How do I run a basic one-way anova in R? > > Regards Kes > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
Hi Kes, May be: my.df<-data.frame(FT=rep(c("Fa","Fb"),10),Y=runif(20)) aov(Y ~ FT, data = my.df ) # fixed effects Kind regards, miltinho On 2/12/08, Kes Knave <kestrel78@gmail.com> wrote:> > Dear all, > > How do I run a basic one-way anova in R? > > Regards Kes > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html<http://www.r-project.org/posting-guide.html> > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
On 2/12/2008 8:54 AM, Kes Knave wrote:> Dear all, > > How do I run a basic one-way anova in R?Have you read the relevant sections of An Introduction to R, as the posting guide requests? Have you tried searching for documentation using, for example: RSiteSearch("oneway ANOVA") or help.search("oneway") ??> Regards Kes > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.-- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 512-0171 (M, W, F) fax: (917) 438-0894
Maybe Matching Threads
- Levene's test for homogeneity of variances (befor using ANOVA)
- Does the t.test in R uses Welch procedure or ordinary student t-test?
- How to calculate normality of the residuals from a test in R?
- How to make reference to R in the method section in a scientific article?
- Checking for linearity by ploting residuals against predicted values (lme)?