search for: rank1

Displaying 7 results from an estimated 7 matches for "rank1".

Did you mean: rank
2011 Sep 26
2
merger two 3-d scatter plot
Dear R groups: I have the data as follows, I want to plot the "Rank1 ~ obs30*Cases" and "Rank2 ~ obs30*Cases" on the same plot as one 3-D scatter plot, how to do that? Any help is highly appreciated. ID obs30 Cases RANK1 RANK2 1 0.03175 63 82 81 2 0.00000 34 1 34 3 0.00000 36 2 41 4 0.00000 54 3 26 5 0.00000 22 4 42 6 0.00746 134 39 32 7 0.00000 2 5...
2006 Apr 23
2
Reorganizing rows and columns
...1 9 1 2 7 1 3 5 2 1 7 2 2 9 2 3 [[2]] Doc Query Rank 4 1 1 5 1 2 9 1 3 8 2 1 5 2 2 7 2 3 I need to rearrange the data so that it is sorted by Query and Document, with columns for rank1 and rank2 (from files 1 and 2, respectively). For example: [[1]] Doc Query Rank1 Rank1 4 1 NA 1 5 1 1 2 7 1 3 NA 9 1 2 3 5 2 1 2 7 2 2 3 8 2 NA 1 9 2 3 NA My goal is...
2010 Feb 22
2
Siegel-Tukey test for equal variability (code)
Hi, I recently ran into the problem that I needed a Siegel-Tukey test for equal variability based on ranks. Maybe there is a package that has it implemented, but I could not find it. So I programmed an R function to do it. The Siegel-Tukey test requires to recode the ranks so that they express variability rather than ascending order. This is essentially what the code further below does. After the
2006 Sep 19
2
looking for some functions to analyze a data set.
Hi R-users I have a data set. There are 10 products and the numbers of people who ranked the products. The format of the data set is productID rank1 rank2 rank3 rank4 rank5 rank6 rank7 rank8 rank9 rank10 ------------------------------------------------------------------------------------------------------- 1 10 2 3 3 6 4 2 5 24 6 8 7...
2009 Nov 04
0
Correlation of ranks of labels?
Hi, I have two ranks of labels (strings) representing user preferences of colors. For instance, here is a simple example with 4 preferences for each user: > rank1 [1] "red" "blue" "green" "black" > rank2 [1] "white" "gray" "black" "blue" How can I compute Kendall's Tau for this scenario? Thanks in advance, -- S?rgio Nunes
2012 Apr 22
1
Transform dataframe
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120422/bb638d28/attachment.pl>
2007 Aug 11
0
DOE and interaction plot general question
...t; > > I want to order this data.frame by the combined rank of Res1 & Res2, but > > where weigths are assigned to the importeance av each column. Lets > assume > > that Res1 is twice as important and lower values rank better. > > > > MyRanks<-data.frame > (Rank1=rank(MyFrame[,"Res1"]),Rank2=rank(MyFrame[,"Res2"]),CombR=2*rank(MyFrame[,"Res1"])+rank(MyFrame[,"Res2"]), > row.names=c("G1","G2","G3","G4","G5")) > > > > Rank1 Rank2 CombR > > G1...