Hi, Given names <- c("a", "b", "c", "d"). I would like to generate "a vs. b", "a vs. c", "a vs. d", "b vs. c", "b vs. d", "c vs. d" Thanks [[alternative HTML version deleted]]
Dimitris Rizopoulos
2008-Mar-11 08:23 UTC
[R] How to generate column names for pairwise comparison
try this: nams <- c("a", "b", "c", "d") combn(nams, 2, paste, collapse = " vs. ") I hope it helps. Best, Dimitris ---- Dimitris Rizopoulos 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 Quoting Ng Stanley <stanleyngkl at gmail.com>:> Hi, > > Given names <- c("a", "b", "c", "d"). I would like to generate "a vs. b", "a > vs. c", "a vs. d", "b vs. c", "b vs. d", "c vs. d" > > Thanks > > [[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
Possibly Parallel Threads
- counts of each column that are not NA, and/or greater than column means
- Conditional rows
- How to convert decimals to fractions
- selecting rows with more than x occurrences in a given column (data type is names)
- Sorting a data frame when you don't know the columns