similar to: Duncan's Multiple Range test

Displaying 20 results from an estimated 90000 matches similar to: "Duncan's Multiple Range test"

2004 Feb 09
5
Printting 'for' and 'while' indices
Sorry, I forgot to correct the message subject, so I am resending my doubt it below: Hi all! I wrote a very basic program in R, which has some loops ('for' and 'while'). Is there a way to print the 'for' (or while) indice while the program is running so that I am able to estimate where the program is and how long it will last? I mean, I want something like this:
2004 Feb 16
0
Duncan's rooted system
Duncan writes: >Howyd all? Seems that I have been routed. Possibly >by a physical B&E, but who knows? Probably some >of you do.... anyways, some politically sensitive >email was deleted from a user account and the >line > >low -tr & > >inserted into my .xinitrc . > >Duncan (Dhu) Campbell > I didn't see a lot of feedback that struck me as
2012 Nov 25
1
Multiple Range Means Test
Hello, My boss wants me to do a Duncan's test, which is under the agricolae package. Unfortunately I am not versed enough in R to run my data. I have 7 subspecies of deer mouse for which I have 23 measurements which are my variables of interest. I have run an ANOVA for each of the set of subspecies and variables, my data look like this: subspecies WMF 1 rowleyi 2.50 2 rowleyi 2.30
2007 Sep 25
1
Create grouping from TukeyHSD (as a duncan test does)?
Hello everybody 1. If there is/ever will be a function to perform "duncan multiple range test" please inform me at once. 2. Is there a way to create a grouping as duncan does from TukeyHSD output? My experimental design contained 62 genotypes, so the pairwise comparison is not that usefull and clear to look at. How would I do that? Is there an other test that does give grouping as
2011 Aug 23
0
duncan test (kruskal post-hoc)
Hi, i?ve read all that i could about the post-hoc test for kruskall-Wallis, now i know that i need to run Duncan test, but i?m not able to find in any package or script. I s anybody knows where can i find it? Thanks ----- Mario Garrido Escudero PhD student Dpto. de Biolog?a Animal, Ecolog?a, Parasitolog?a, Edafolog?a y Qca. Agr?cola Universidad de Salamanca -- View this message in context:
2007 Mar 13
0
Duncan post-hoc tests in R?
Hello, I am looking for an R function that impliments Duncan's post-hoc test. I am aware of multcomp and its function "glht" but, unless I am missing something, this cannot impliment the Duncan test. Any help of pointers are welcome. Bill Shipley
2016 Mar 31
1
reduced set of alternatives in package mlogit
code? example data? We can only guess based on your vague post. "PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code." Moreover, this sounds like a statistical question, not a question about R programming, and so might be more appropriate for a statistical list like stats.stackexchange.com .
2006 Oct 13
2
loop, pipe connection, output objects
Hi all, I have the following -newbye- problem. Inside R, I am trying to process a file and creating from it many files. The file is organized in different columns, the second containing a code. I want to create as output objects, which contain only entries in a certain code range, and whose name contain the code itself. Here is my attempt indice <- (201:399) for(i in indice){ data.i <-
2004 Feb 11
6
AGREP
Hi all, I have two questions 1 - I have the version 1.4.1 of R, and it doesn't have the 'agrep' function in the base library. Is there a way to make this funcion avaliable in R 1.4.1? I mean, how to 'copy' it from R 1.8.1 and 'paste' it in R 1.4.1? 2 - The AGREP function doesn't give me the Levenshtein distance (edit distance). Is there a function in R that does
2015 Dec 03
2
public API
Hi everybody. First of all, I'm not subscribed to the list, so please CC me in answers. Second, please don't kill me :) I'm suffering the fact that if I, as a developer, want to connect to another machine via SSH, I must use a third party library[1]. Because this is a reimplemetation of the protocol, it's always lagging behind, which only makes sense. Personally, it also
2011 Mar 10
1
Main title in a multiple display of graphs
Hello! I want to display four xyplots in the same window (sorry if I don't use the propers words, but my English is rude) I know that if I use plot(y~x) then x=(1:100) y=(1:100) par(mfrow=c(2,2)) plot(y~x) plot(y~x) plot(y~x) plot(y~x) would give what I want, but this is not the case because I need the functions of xyplot. So I did the following: plot.new()
2003 Feb 19
1
Multiple Logit/Probit
Does anybody know how to do multiple logit/probit analysis with R? Thanks in advance!
2017 Oct 27
1
What free memory range is safe to operate?
Hello, Hello, There's a official documentation telling which is the percent of free memory is indicated to operate?A limit to Avoiding crashing, slow performance, and memory warnings. What are the thresholds? <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Livre de v?rus. www.avast.com
2016 Apr 01
0
reduced set of alternatives in package mlogit
-----Original Message----- From: Bert Gunter [mailto:bgunter.4567 at gmail.com] Sent: quinta-feira, 31 de mar?o de 2016 20:22 To: Jose Marcos Ferraro <jose.ferraro at LOGITeng.com> Cc: r-help at r-project.org Subject: Re: [R] reduced set of alternatives in package mlogit code? example data? We can only guess based on your vague post. "PLEASE do read the posting guide
2004 Feb 26
2
Structural Equation Model
Hello all! I want to estimate parameters in a MIMIC model. I have one latent variable (ksi), four reflexive indicators (y1, y2, y3 and y4) and four formative indicators (x1, x2, x3, x4). Is there a way to do it in R? I know there is the SEM library, but it seems not to be possible to specify formative indicators, that is, observed exogenous variables which causes the latent variable. Thanks,
2011 Sep 14
0
[LLVMdev] Llvm build master status?
Hello everyone, May be google1 build master cold be moved to lab.llvm.org machines? Do anybody use it? Thanks Galina On Wed, Sep 7, 2011 at 6:40 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Daniel, > >> I am working on it, but it may not happen until this weekend > > thanks a lot for working on this. > > Best wishes, Duncan. > >> >> On Wed,
2004 Jul 08
2
Getting elements of a matrix by a vector of column indice s
See if the following helps: > m <- outer(letters[1:5], 1:4, paste, sep="") > m [,1] [,2] [,3] [,4] [1,] "a1" "a2" "a3" "a4" [2,] "b1" "b2" "b3" "b4" [3,] "c1" "c2" "c3" "c4" [4,] "d1" "d2" "d3" "d4" [5,]
2011 Sep 14
1
[LLVMdev] Llvm build master status?
google5 is up, i'm just working on copying the buildmaster config. If you want to move it to lab.llvm, that's fine too. On Wed, Sep 14, 2011 at 2:32 PM, Galina Kistanova <gkistanova at gmail.com> wrote: > Hello everyone, > > May be google1 build master cold be moved to lab.llvm.org machines? > Do anybody use it? > > Thanks > > Galina > > > > On
2009 Nov 30
1
multiple column argument in formula (MASS:lda)
Dear R Help team, I'm having some problems running a discriminant analysis (MASS:lda) over my data, i have a grouping variable coming from a previous cluster analysis and several discriminators (78 actually). I'm trying to run lda using column index as independent variable in the formula like it's done in the help page for ?formula:
2011 Sep 07
3
[LLVMdev] Llvm build master status?
Hi Daniel, > I am working on it, but it may not happen until this weekend thanks a lot for working on this. Best wishes, Duncan. > > On Wed, Sep 7, 2011 at 4:41 AM, Duncan Sands<baldrick at free.fr> wrote: >> Hi Daniel, >> >>> [12:07pm] DannyB_: for security reasons, google1 and google2 (google1 >>> is the main llvm build master) >>>